From a3c464bb12334a3b5384db0d44b328941569e5f9 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 17 May 2026 20:27:56 +0300 Subject: [PATCH 01/11] Port matching by tradehash in comparison buy similar menu --- src/Classes/CompareBuySimilar.lua | 35 ++++- src/Classes/CompareTradeHelpers.lua | 218 +++++++++++++++------------- 2 files changed, 148 insertions(+), 105 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 698d5be9b8..d54aa68265 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -19,8 +19,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" }, } @@ -84,7 +84,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 = { @@ -142,8 +142,17 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is 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 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 @@ -191,26 +200,29 @@ function M.openPopup(item, slotName, primaryBuild) local modTypeSources = { { 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" }, + { 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) + formatted = formatted and formatted:gsub(" %^8%(Not supported in PoB yet%)", "") 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 tradeHash = tradeHelpers.findTradeHash(item, resolvedLine, source.type, modLine.desecrated) + local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) 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, + tradeId = identifier, value = value, modType = source.type, + invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) }) end end @@ -273,6 +285,13 @@ 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 end) end diff --git a/src/Classes/CompareTradeHelpers.lua b/src/Classes/CompareTradeHelpers.lua index eb1802348d..c18b99e058 100644 --- a/src/Classes/CompareTradeHelpers.lua +++ b/src/Classes/CompareTradeHelpers.lua @@ -5,14 +5,6 @@ -- 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") - end -end local M = {} @@ -36,48 +28,11 @@ function M.modLineValue(line) return tonumber(line:match("[%d]+%.?[%d]*")) or 0 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 - end - 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 +-- Helper: fetch and cache the trade API stats +local _tradeStats = nil local _tradeStatsFetched = false local function getTradeStatsLookup() - if _tradeStatsFetched then return _tradeStatsLookup end - _tradeStatsFetched = true + if _tradeStats then return _tradeStats end local tradeStats = "" local easy = common.curl.easy() if not easy then return nil end @@ -89,24 +44,10 @@ local function getTradeStatsLookup() end) local ok = easy:perform() easy:close() - if not ok or tradeStats == "" then return nil end + if not ok or tradeStats == "" then return {} 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 + _tradeStats = parsed.result + return _tradeStats end -- Map source types used in OpenBuySimilarPopup to trade API category labels @@ -116,50 +57,133 @@ M.sourceTypeToCategory = { ["enchant"] = "Enchant", } +function M.shouldBeInverted(tradeId, modLine, modType) + local formattedLine = M.formatDatabaseText(M.formatDatabaseText(modLine)) + for _, category in ipairs(getTradeStatsLookup()) do + if category.id == modType then + for _, stat in ipairs(category.entries) do + if tradeId == stat.id then + -- remove radius jewel extra text + local formattedTradeSiteText = M.formatDatabaseText(stat.text) + -- local modifiers don't seem to be inverted. same goes for + -- the single stat that has (charm) in it + if formattedTradeSiteText:match("(Local)") or formattedTradeSiteText:match(" %(Charm%)$") then + return false + end + -- trade site sometimes has a + sign, sometimes not + return not (formattedLine == formattedTradeSiteText or formattedLine:gsub("^%+", "") == formattedTradeSiteText) + end + end + end + end +end + +-- Helper: normalise data texts to # format +function M.formatDatabaseText(text) + -- decimal -> integer + text = text:gsub("%d+%.%d+", "1") + -- (123-124) -> # + text = text:gsub("%(%d+%-%d+%)", "#") + text = text:gsub("%d+", "#") + -- remove radius jewel text. the same description is used for regular and + -- radius jewels in the exports + text = text:gsub("^Notable Passive Skills in Radius also grant ", "") + text = text:gsub("^Small Passive Skills in Radius also grant ", "") + return text +end + -- 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] +function M.findTradeHash(item, modLine, modType, isVeiled) + local formattedLine = M.formatDatabaseText(modLine) + -- the data export splits some mods into different parts, even though they + -- are technically just one stat. we handle that here + function findStat(dbMod, allowDefault) + local excludeTags = (not allowDefault) and { default = true } or nil + if #dbMod.weightKey > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then + return nil + end + for tradeHash, description in pairs(dbMod.tradeHashes) do + for _, line in ipairs(description) do + local dbFormatted = M.formatDatabaseText(line) + if formattedLine == dbFormatted then + return tradeHash + end + end + end end - -- Try without leading +/- sign - local stripped = template:gsub("^[%+%-]", "") - key = stripped .. "|" .. modType - if lookup[key] then - return lookup[key] + + -- implicit mods + if modType == "implicit" then + for _, dbName in ipairs({"Implicit", "Synthesis", "Eldritch"}) do + for _, dbMod in pairs(data.itemMods[dbName]) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end end - -- Fallback: match by template text only (any type) - if lookup[template] then - return lookup[template] + + --enchantments TODO + + -- scourge mods + if modType == "scourge" then + for _, dbMod in pairs(data.itemMods.Scourge) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end end - if lookup[stripped] then - return lookup[stripped] + + -- crucible mods + -- TODO: add trade hash to these + if modType == "crucible" then + for _, dbMod in pairs(data.crucible) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + 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 + -- veiled mods + + for _, dbMod in pairs(data.veiledMods) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + -- rest of the explicit mods + for _, dbName in ipairs({ "Delve", "Explicit" }) do + for _, dbMod in pairs(data.itemMods[dbName]) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe end end - -- Fallback: any category - if tradeStats[strippedLine] then - return tradeStats[strippedLine].id + end + + for _, dbMod in pairs(data.itemMods.Scourge) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + + -- implicit mods + if modType == "explicit" then + for _, dbMod in pairs(data.itemMods.Implicit) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end end end - return nil + -- TODO flask, graft, jewels 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) From 7679c5cab7fc6c3ea05237f2c11a080e95609044 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 14:33:32 +0300 Subject: [PATCH 02/11] Export trade hash for crucible passive mods --- src/Data/Crucible.lua | 4982 +++++++++++++++---------------- src/Export/Scripts/crucible.lua | 5 + 2 files changed, 2496 insertions(+), 2491 deletions(-) diff --git a/src/Data/Crucible.lua b/src/Data/Crucible.lua index daca41ee72..aac191ae39 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 7860 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 8002 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10190 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 10625 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9342 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9269 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 9288 }, 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, 10588 }, 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, 10588 }, 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, 10588 }, 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, 10588 }, 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, 10588 }, 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, 10588 }, 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, 7926 }, 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, 7926 }, 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, 7926 }, 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, 7926 }, 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, 7926 }, 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, 7926 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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 = { 10125 }, 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 = { 10125 }, 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 = { 10125 }, 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 = { 10125 }, 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 = { 10125 }, 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 = { 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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, 10125 }, 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 = { 10586, 10588 }, 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 = { 10586, 10588 }, 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 = { 10586, 10588 }, 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 = { 10586, 10588 }, 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 = { 10586, 10588 }, 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 = { 10586, 10588 }, 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 = { 10586 }, 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 = { 10586 }, 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 = { 10586 }, 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 = { 10586 }, 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 = { 10586 }, 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 = { 10586 }, 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, 10586 }, 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, 10586 }, 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, 10586 }, 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, 10586 }, 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, 10586 }, 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, 10586 }, 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 = { 10194, 10586 }, 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 = { 10194, 10586 }, 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 = { 10194, 10586 }, 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 = { 10194, 10586 }, 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 = { 10194, 10586 }, 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 = { 10194, 10586 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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, 10610 }, 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 = { 9266, 9269 }, 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 = { 9266, 9269 }, 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 = { 9266, 9269 }, 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 = { 9266, 9269 }, 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 = { 9266, 9269 }, 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 = { 9266, 9269 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266 }, 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 = { 9266 }, 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 = { 9266 }, 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 = { 9266 }, 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 = { 9266 }, 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 = { 9266 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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 = { 9266, 9290 }, 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, 9266 }, 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, 9266 }, 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, 9266 }, 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, 9266 }, 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, 9266 }, 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, 9266 }, 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 = { 9269, 9323 }, 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 = { 9269, 9323 }, 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 = { 9269, 9323 }, 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 = { 9269, 9323 }, 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 = { 9269, 9323 }, 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 = { 9269, 9323 }, 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 = { 9269 }, 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 = { 9269 }, 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 = { 9269 }, 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 = { 9269 }, 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 = { 9269 }, 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 = { 9269 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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 = { 9269, 9298 }, 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, 9263 }, 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, 9263 }, 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, 9263 }, 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, 9263 }, 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, 9263 }, 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, 9263 }, 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 = { 9263 }, 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 = { 9263 }, 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 = { 9263 }, 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 = { 9263 }, 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 = { 9263 }, 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 = { 9263 }, 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 = { 9263, 9303 }, 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 = { 9263, 9303 }, 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 = { 9263, 9303 }, 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 = { 9263, 9303 }, 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 = { 9263, 9303 }, 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 = { 9263, 9303 }, 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 = { 9278, 9306 }, 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, 10610 }, 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, 10610 }, 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 = { 10798 }, 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 = { 10828 }, 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 = { 10772 }, 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 = { 10800 }, 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 = { 10781 }, 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 = { 10816 }, 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 = { 10801 }, 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 = { 10767 }, 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 = { 10787 }, 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 = { 10821 }, 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 = { 10782 }, 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 = { 10770 }, 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 = { 10780 }, 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 = { 10769 }, 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 = { 10777 }, 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 = { 10768 }, 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 = { 10808 }, 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 = { 10788 }, 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 = { 10773 }, 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 = { 10799 }, 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 = { 10817 }, 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 = { 10792 }, 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 = { 10790 }, 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 = { 10794 }, 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 = { 10786 }, 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 = { 10822 }, 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 = { 10795 }, 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 = { 10814 }, 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 = { 10779 }, 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 = { 10829 }, 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 = { 10824 }, 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 = { 10825 }, 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 = { 10775 }, 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 = { 10804 }, 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 = { 10802 }, 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 = { 10793 }, 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 = { 10820 }, 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 = { 10809 }, 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 = { 10784 }, 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 = { 10796 }, 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 = { 10806 }, 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 = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 8129 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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 = { 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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, 8129 }, 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 = { 7950 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7950 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7950 }, 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, 7158 }, 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, 7158 }, 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, 7158 }, 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, 7158 }, 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, 7875 }, 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, 7875 }, 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, 9105 }, 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, 9105 }, 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, 9105 }, 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, 9105 }, 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, 6759 }, 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, 6759 }, 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, 6759 }, 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, 6759 }, 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, 7986 }, 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, 7986 }, 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, 7986 }, 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, 7986 }, 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, 7989 }, 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, 7989 }, 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, 7989 }, 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, 7989 }, 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, 10698 }, 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, 10698 }, 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, 10698 }, 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, 10698 }, 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, 6725 }, 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, 6725 }, 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, 6725 }, 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, 6725 }, 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, 10614 }, 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, 10614 }, 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, 10614 }, 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, 10614 }, 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, 7133 }, 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, 7133 }, 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, 7133 }, 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, 7133 }, 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 = { 9781 }, 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 = { 9781 }, 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 = { 8213, 9221 }, 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 = { 8213, 9221 }, 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 = { 8213, 9221 }, 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 = { 8213, 9221 }, 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 = { 9217, 9219 }, 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 = { 9217, 9219 }, 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 = { 9217, 9219 }, 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 = { 9217, 9219 }, 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 = { 10419, 10611 }, 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 = { 10419, 10611 }, 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, 10038 }, 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, 10038 }, 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, 10038 }, 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, 10038 }, 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 = { 10039, 10043 }, 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 = { 10039, 10043 }, 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 = { 10039, 10043 }, 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 = { 10039, 10043 }, 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, 10404 }, 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, 10404 }, 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, 10404 }, 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, 10404 }, 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, 10459 }, 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 = { 10019, 10479 }, 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 = { 10566, 10574 }, 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 = { 10566, 10574 }, 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 = { 10566, 10574 }, 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 = { 10566, 10574 }, 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, 7284 }, 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, 7283 }, 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, 7285 }, 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 = { 7271, 7286 }, 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, 7287 }, 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, 7287 }, 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, 7287 }, 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, 7287 }, 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, 7158 }, 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, 7158 }, 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, 7158 }, 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, 7158 }, 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, 9969 }, 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, 9969 }, 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, 9969 }, 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, 9969 }, 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, 9978 }, 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, 9978 }, 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, 9978 }, 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, 9978 }, 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 = { 10008, 10019 }, 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 = { 10008, 10019 }, 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 = { 10008, 10019 }, 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 = { 10008, 10019 }, 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 = { 7242, 9834 }, 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 = { 7242, 9834 }, 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 = { 7242, 9834 }, 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 = { 7242, 9834 }, 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 = { 9408 }, 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 = { 9408 }, 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 = { 9408 }, 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 = { 9408 }, 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 = { 6263 }, 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 = { 6263 }, 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 = { 6263 }, 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 = { 6263 }, 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 = { 9141, 9258 }, 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 = { 9141, 9258 }, 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, 9141 }, 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, 9141 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10766 }, 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 = { 7107, 7110 }, 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 = { 7107, 7110 }, 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 = { 7107, 7110 }, 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 = { 7107, 7110 }, 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 = { 7107, 7110 }, 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 = { 7107, 7110 }, 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, 7111 }, 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, 7111 }, 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, 7111 }, 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, 7111 }, 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, 7111 }, 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, 7111 }, 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, 7115 }, 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, 7115 }, 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, 7115 }, 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, 7115 }, 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, 7115 }, 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, 7115 }, 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 = { 7119, 7123 }, 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 = { 7119, 7123 }, 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 = { 7119, 7123 }, 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 = { 7119, 7123 }, 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 = { 7119, 7123 }, 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 = { 7119, 7123 }, 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, 7125 }, 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, 7125 }, 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, 7125 }, 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, 7125 }, 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, 7125 }, 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, 7125 }, 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 = { 10721, 10724 }, 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 = { 10721, 10724 }, 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 = { 10721, 10724 }, 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 = { 10721, 10724 }, 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 = { 10721, 10724 }, 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 = { 10721, 10724 }, 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 = { 9710, 9716 }, 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 = { 9710, 9716 }, 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 = { 9710, 9716 }, 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 = { 9710, 9716 }, 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 = { 9710, 9716 }, 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 = { 9710, 9716 }, 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, 9707 }, 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, 9707 }, 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, 9707 }, 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, 9707 }, 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, 9707 }, 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, 9707 }, 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, 10184 }, 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, 10184 }, 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 = { 9843 }, 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 = { 9843 }, 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 = { 10005 }, 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 = { 10005 }, 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, 9969 }, 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, 9969 }, 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, 6521 }, 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, 7227 }, 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 = { 6349, 6744 }, 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 = { 6349, 6744 }, 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 = { 6919, 6920 }, 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 = { 6919, 6920 }, 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, 10587 }, 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, 10587 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9162 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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, 9287 }, 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 = { 9303 }, 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 = { 9303 }, 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 = { 9303 }, 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 = { 9303 }, 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 = { 9303, 9333 }, 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 = { 9303, 9333 }, 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 = { 9303, 9333 }, 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 = { 9303, 9333 }, 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, 9318 }, 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, 9318 }, 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, 9318 }, 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, 9318 }, 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 = { 9317 }, 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 = { 9317 }, 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 = { 9276 }, 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 = { 9276 }, 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 = { 9276 }, 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 = { 9276 }, 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 = { 9334 }, 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 = { 9334 }, 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 = { 9334 }, 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 = { 9334 }, 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 = { 9326 }, 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 = { 9326 }, 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 = { 9326 }, 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 = { 9326 }, 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, 9969 }, 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, 9969 }, 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, 9969 }, 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, 9969 }, 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, 9978 }, 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, 9978 }, 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, 9978 }, 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, 9978 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9284 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9281 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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, 9286 }, 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 = { 7485, 7493 }, 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 = { 7485, 7493 }, 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 = { 7485, 7493 }, 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 = { 7485, 7493 }, 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 = { 7485, 7507 }, 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 = { 7485, 7507 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 9552 }, 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, 6893 }, 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, 6893 }, 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, 6893 }, 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, 6893 }, 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, 10026, 10031 }, 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 = { 7436, 7437 }, 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 = { 6851 }, 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 = { 6324, 9478 }, 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 = { 9810, 10412 }, 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 = { 9757 }, 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 = { 7470, 7471 }, 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 = { 7470, 7471 }, 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 = { 10527 }, 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 = { 10527 }, 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 = { 6257 }, 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 = { 10524 }, 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 = { 10524 }, 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 = { 10083 }, 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 = { 10526 }, 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 = { 6261 }, 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 = { 6261 }, 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 = { 7184 }, 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 = { 6284 }, 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 = { 6914 }, 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 = { 6914 }, 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 = { 10359 }, 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 = { 10358 }, 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 = { 9997, 9998, 9999 }, 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 = { 9997, 9998, 9999 }, 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 = { 6642, 7878 }, 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 = { 6642, 7878 }, 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 = { 9852 }, 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 = { 9852 }, 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 = { 10111, 10111.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 = { 10111, 10111.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 = { 6687, 6692, 6858 }, 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 = { 7317, 7318 }, 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 = { 6525, 6527, 9831 }, 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 = { 6595 }, 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 = { 6595 }, 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 = { 6471 }, 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 = { 6471 }, 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 = { 6591, 6592 }, 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 = { 6591, 6592 }, 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 = { 6667, 6668 }, 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 = { 6667, 6668 }, 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 = { 10014, 10015 }, 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 = { 10014, 10015 }, 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 = { 7439 }, 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 = { 8219, 8220 }, 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 = { 8219, 8220 }, 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 = { 7197, 7198 }, 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 = { 6620, 6621, 6622, 7262 }, 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 = { 6620, 6621, 6622, 7262 }, 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 = { 7134 }, 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 = { 7134 }, 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 = { 6654 }, 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 = { 6654 }, 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 = { 6367 }, 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 = { 6469, 6470 }, 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 = { 6469, 6470 }, 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 = { 7473, 10100 }, 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 = { 7473, 10100 }, 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 = { 6677, 9560 }, 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 = { 6677, 9560 }, 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 = { 10621 }, 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, 10234 }, 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 = { 6323 }, 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 = { 10049, 10050 }, 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 = { 10049, 10050 }, 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 = { 10116 }, 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 = { 10116 }, 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 = { 9536, 9538, 10306, 10317 }, 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 = { 6551 }, 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 = { 6551 }, 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 = { 7181, 7182, 7183 }, 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 = { 7181, 7182, 7183 }, 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 = { 6623, 6624 }, 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 = { 6623, 6624 }, 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 = { 10253, 10254 }, 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 = { 10253, 10254 }, 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 = { 7173 }, 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 = { 7173 }, 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 = { 9945 }, 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 = { 9945 }, 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, 10622 }, 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, 10622 }, 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 = { 10235 }, 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 = { 7482, 7497 }, 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 = { 10539 }, 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 = { 10539 }, 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 = { 9762 }, 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 = { 9762 }, 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 = { 10550 }, 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 = { 10550 }, 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 = { 10596 }, 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 = { 10607 }, 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 = { 10607 }, 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 = { 10592 }, 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 = { 10592 }, 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 = { 10604 }, 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 = { 10604 }, 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 = { 10605 }, 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 = { 10605 }, 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 = { 10608 }, 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 = { 10608 }, 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 = { 10599 }, 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 = { 10599 }, 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 = { 10591 }, 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 = { 10591 }, 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 = { 10590 }, 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 = { 10590 }, 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 = { 10603 }, 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 = { 10603 }, 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 = { 10595 }, 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 = { 10595 }, 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 = { 10594 }, 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 = { 10594 }, 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 = { 10606 }, 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 = { 10606 }, 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 = { 10600 }, 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 = { 10593 }, 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 = { 10602 }, 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 = { 6611 }, 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 = { 6601 }, 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 = { 6602 }, 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 = { 6600 }, 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 = { 6605 }, 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 = { 6606 }, 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 = { 6612 }, 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 = { 6613 }, 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 = { 6599 }, 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 = { 6603 }, 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 = { 6607 }, 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 = { 6608 }, 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 = { 6604 }, 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 = { 6615 }, 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 = { 6614 }, 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 = { 6609 }, 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 = { 6610 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281, 1418 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1960 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1962 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1964 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1967 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 1966 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 2488 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1281, 7865 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367, 1418 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 1367, 2031 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 63, 1367 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376, 2891 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 2034 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1376, 1418 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387, 3393 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 2038 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1387, 1469 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395, 1576 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 8007 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1395, 10624 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1367, 1376, 1387 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408, 1451 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1960 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1962 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1964 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 1967 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1408, 2983 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409, 1451 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 1409, 2031 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 63, 1409 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410, 2891 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 2034 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1410, 1451 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411, 3393 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 2038 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1411, 1463 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412, 1576 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10189 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1412, 10624 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228, 1463 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1585 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1228, 1566 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215, 1583 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 1900 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 1215, 4990 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778, 9273 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1961, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1963, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1965, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 1968, 3778 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3778, 9346 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776, 9273 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 3776, 9288 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 63, 3776 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775, 9292 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9285 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3775, 9273 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3393, 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9290 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 3777, 9292 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 1576, 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 3179, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1646, 3774 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978, 9292 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1585, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 1566, 1978 }, 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 = { 183 }, 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 = { 184 }, 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 = { 184 }, 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 = { 179 }, 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 = { 179 }, 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 = { 185 }, 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 = { 185 }, 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 = { 165 }, 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 = { 163 }, 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 = { 166 }, 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 = { 4929 }, 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 = { 4929 }, 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 = { 4874 }, 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 = { 4874 }, 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 = { 4877 }, 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 = { 4877 }, 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 = { 4928 }, 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 = { 4928 }, 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 = { 1197, 1886 }, 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 = { 1197, 1886 }, 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 = { 1197, 1886 }, 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 = { 1197, 1886 }, 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 = { 1197, 1886 }, 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 = { 1197, 1886 }, 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 = { 1197 }, 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 = { 1197 }, 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 = { 1197 }, 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 = { 1197 }, 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 = { 1197 }, 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 = { 1197 }, 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 = { 1188, 1197 }, 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 = { 1188, 1197 }, 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 = { 1188, 1197 }, 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 = { 1188, 1197 }, 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 = { 1188, 1197 }, 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 = { 1188, 1197 }, 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 = { 1574 }, 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 = { 1574 }, 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 = { 1574 }, 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 = { 1574 }, 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 = { 1574 }, 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 = { 1196, 1574 }, 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 = { 1196, 1574 }, 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 = { 1196, 1574 }, 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 = { 1574, 1624 }, 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 = { 1574, 1624 }, 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 = { 1574, 1624 }, 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 = { 1560, 1574 }, 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 = { 1560, 1574 }, 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 = { 1560, 1574 }, 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 = { 1574, 1949 }, 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 = { 1574, 1949 }, 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 = { 1574, 1949 }, 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 = { 1574, 3277 }, 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 = { 1574, 3277 }, 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 = { 1574, 3277 }, 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 = { 1574, 1754 }, 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 = { 1574, 1754 }, 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 = { 1574, 1754 }, 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 = { 1545 }, 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 = { 1545 }, 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 = { 1545 }, 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 = { 1545 }, 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 = { 1545 }, 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 = { 1545, 2250 }, 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 = { 1545, 2250 }, 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 = { 1545, 2250 }, 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 = { 1517, 1545 }, 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 = { 1517, 1545 }, 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 = { 1517, 1545 }, 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 = { 1189, 1545 }, 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 = { 1189, 1545 }, 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 = { 1189, 1545 }, 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 = { 63, 1545 }, 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 = { 63, 1545 }, 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 = { 63, 1545 }, 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 = { 1545, 2254 }, 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 = { 1545, 2254 }, 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 = { 1545, 2254 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1553, 4990 }, 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 = { 1553, 4990 }, 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 = { 1553, 4990 }, 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 = { 1553, 1907 }, 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 = { 1553, 1907 }, 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 = { 1553, 1907 }, 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 = { 1190, 1553 }, 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 = { 1190, 1553 }, 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 = { 1190, 1553 }, 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 = { 63, 1553 }, 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 = { 63, 1553 }, 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 = { 63, 1553 }, 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 = { 1148, 1553 }, 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 = { 1148, 1553 }, 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 = { 1148, 1553 }, 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 = { 1564 }, 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 = { 1564 }, 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 = { 1564 }, 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 = { 1564 }, 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 = { 1564 }, 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 = { 1564, 1570 }, 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 = { 1564, 1570 }, 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 = { 1564, 1570 }, 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 = { 1564, 1589 }, 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 = { 1564, 1589 }, 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 = { 1564, 1589 }, 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 = { 1191, 1564 }, 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 = { 1191, 1564 }, 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 = { 1191, 1564 }, 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 = { 63, 1564 }, 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 = { 63, 1564 }, 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 = { 63, 1564 }, 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 = { 1564, 1585 }, 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 = { 1564, 1585 }, 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 = { 1564, 1585 }, 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 = { 1362, 1630 }, 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 = { 1362, 1630 }, 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 = { 1362, 1630 }, 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 = { 1362 }, 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 = { 1362 }, 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 = { 1362 }, 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 = { 1362, 2452 }, 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 = { 1362, 2452 }, 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 = { 1362, 2452 }, 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 = { 1371, 1636 }, 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 = { 1371, 1636 }, 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 = { 1371, 1636 }, 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 = { 1371 }, 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 = { 1371 }, 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 = { 1371 }, 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 = { 1371, 2453 }, 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 = { 1371, 2453 }, 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 = { 1371, 2453 }, 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 = { 1382, 1641 }, 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 = { 1382, 1641 }, 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 = { 1382, 1641 }, 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 = { 1382 }, 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 = { 1382 }, 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 = { 1382 }, 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 = { 1382, 2454 }, 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 = { 1382, 2454 }, 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 = { 1382, 2454 }, 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 = { 1390, 1646 }, 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 = { 1390, 1646 }, 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 = { 1390, 1646 }, 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 = { 1390 }, 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 = { 1390 }, 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 = { 1390 }, 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 = { 1390, 2456 }, 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 = { 1390, 2456 }, 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 = { 1390, 2456 }, 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 = { 1236, 1582 }, 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 = { 1236, 1582 }, 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 = { 1236, 1582 }, 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 = { 1236 }, 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 = { 1236 }, 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 = { 1236 }, 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 = { 1236, 2278 }, 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 = { 1236, 2278 }, 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 = { 1236, 2278 }, 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 = { 1468, 2683 }, 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 = { 1468, 2683 }, 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 = { 1468, 2683 }, 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 = { 1468, 1493 }, 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 = { 1468, 1493 }, 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 = { 1468, 1493 }, 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 = { 1468, 1493 }, 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 = { 1468, 1493 }, 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 = { 1468, 1493 }, 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 = { 1468 }, 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 = { 1468 }, 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 = { 1468 }, 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 = { 1418, 1468 }, 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 = { 1418, 1468 }, 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 = { 1418, 1468 }, 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 = { 1468, 2029 }, 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 = { 1468, 2029 }, 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 = { 1468, 2029 }, 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 = { 1418, 10587 }, 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 = { 1418, 10587 }, 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 = { 1418, 10587 }, 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 = { 1418, 10587 }, 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 = { 1418, 10587 }, 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 = { 1418, 10587 }, 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 = { 1418 }, 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 = { 1418 }, 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 = { 1418 }, 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 = { 1418 }, 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 = { 1418 }, 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 = { 1418 }, 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 = { 1418, 2998 }, 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 = { 1418, 2998 }, 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 = { 1418, 2998 }, 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 = { 1418, 2998 }, 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 = { 1418, 2998 }, 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 = { 1418, 2998 }, 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 = { 1418, 2636 }, 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 = { 1418, 2636 }, 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 = { 1418, 2636 }, 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 = { 1418, 2636 }, 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 = { 1418, 2636 }, 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 = { 1418, 2636 }, 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 = { 1418, 7931 }, 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 = { 1418, 7931 }, 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 = { 1418, 7931 }, 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 = { 1418, 7931 }, 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 = { 1418, 7931 }, 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 = { 1418, 7931 }, 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 = { 1418, 2048 }, 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 = { 1468, 2048 }, 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 = { 2029 }, 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 = { 2029 }, 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 = { 2029 }, 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 = { 1190, 2029 }, 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 = { 1190, 2029 }, 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 = { 1190, 2029 }, 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 = { 1190, 2029 }, 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 = { 1190, 2029 }, 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 = { 1190, 2029 }, 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 = { 1554, 2029 }, 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 = { 1554, 2029 }, 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 = { 1554, 2029 }, 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 = { 1554, 2029 }, 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 = { 1554, 2029 }, 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 = { 1554, 2029 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 2683, 10124 }, 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 = { 2683, 10124 }, 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 = { 2683, 10124 }, 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 = { 2683, 10124 }, 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 = { 2683, 10124 }, 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 = { 2683, 10124 }, 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 = { 10124 }, 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 = { 10124 }, 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 = { 10124 }, 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 = { 10124 }, 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 = { 10124 }, 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 = { 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 1497, 10124 }, 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 = { 2235, 10124 }, 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 = { 2235, 10124 }, 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 = { 2235, 10124 }, 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 = { 2235, 10124 }, 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 = { 2235, 10124 }, 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 = { 2235, 10124 }, 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 = { 10585, 10587 }, 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 = { 10585, 10587 }, 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 = { 10585, 10587 }, 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 = { 10585, 10587 }, 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 = { 10585, 10587 }, 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 = { 10585, 10587 }, 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 = { 10585 }, 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 = { 10585 }, 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 = { 10585 }, 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 = { 10585 }, 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 = { 10585 }, 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 = { 10585 }, 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 = { 1886, 10585 }, 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 = { 1886, 10585 }, 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 = { 1886, 10585 }, 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 = { 1886, 10585 }, 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 = { 1886, 10585 }, 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 = { 1886, 10585 }, 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 = { 10193, 10585 }, 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 = { 10193, 10585 }, 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 = { 10193, 10585 }, 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 = { 10193, 10585 }, 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 = { 10193, 10585 }, 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 = { 10193, 10585 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 2235 }, 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 = { 1586, 2235 }, 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 = { 1586, 2235 }, 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 = { 1586, 2235 }, 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 = { 1586, 2235 }, 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 = { 1586, 2235 }, 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 = { 1586 }, 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 = { 1586 }, 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 = { 1586 }, 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 = { 1586 }, 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 = { 1586 }, 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 = { 1586 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 10609 }, 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 = { 1586, 1888 }, 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 = { 1586, 1888 }, 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 = { 1586, 1888 }, 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 = { 1586, 1888 }, 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 = { 1586, 1888 }, 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 = { 1586, 1888 }, 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 = { 9270, 9273 }, 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 = { 9270, 9273 }, 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 = { 9270, 9273 }, 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 = { 9270, 9273 }, 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 = { 9270, 9273 }, 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 = { 9270, 9273 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270 }, 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 = { 9270 }, 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 = { 9270 }, 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 = { 9270 }, 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 = { 9270 }, 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 = { 9270 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 9270, 9294 }, 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 = { 2150, 9270 }, 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 = { 2150, 9270 }, 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 = { 2150, 9270 }, 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 = { 2150, 9270 }, 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 = { 2150, 9270 }, 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 = { 2150, 9270 }, 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 = { 9273, 9327 }, 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 = { 9273, 9327 }, 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 = { 9273, 9327 }, 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 = { 9273, 9327 }, 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 = { 9273, 9327 }, 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 = { 9273, 9327 }, 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 = { 9273 }, 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 = { 9273 }, 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 = { 9273 }, 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 = { 9273 }, 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 = { 9273 }, 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 = { 9273 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 9273, 9302 }, 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 = { 2150, 9267 }, 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 = { 2150, 9267 }, 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 = { 2150, 9267 }, 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 = { 2150, 9267 }, 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 = { 2150, 9267 }, 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 = { 2150, 9267 }, 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 = { 9267 }, 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 = { 9267 }, 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 = { 9267 }, 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 = { 9267 }, 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 = { 9267 }, 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 = { 9267 }, 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 = { 9267, 9307 }, 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 = { 9267, 9307 }, 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 = { 9267, 9307 }, 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 = { 9267, 9307 }, 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 = { 9267, 9307 }, 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 = { 9267, 9307 }, 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 = { 9282, 9310 }, 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 = { 1165, 3271 }, 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 = { 1165, 3271 }, 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 = { 1165, 3271 }, 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 = { 1165, 2254 }, 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 = { 1165, 2254 }, 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 = { 1165, 2254 }, 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 = { 1165, 5001 }, 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 = { 1165, 5001 }, 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 = { 1165, 5001 }, 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 = { 1165 }, 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 = { 1165 }, 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 = { 1165 }, 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 = { 1165, 10609 }, 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 = { 1165, 10609 }, 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 = { 2254, 5433 }, 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 = { 2254, 5433 }, 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 = { 2254, 5433 }, 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 = { 2254, 5001 }, 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 = { 2254, 5001 }, 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 = { 2254, 5001 }, 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 = { 1560, 2254 }, 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 = { 1560, 2254 }, 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 = { 1560, 2254 }, 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 = { 2254 }, 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 = { 2254 }, 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 = { 2254 }, 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 = { 1762, 2254 }, 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 = { 1762, 2254 }, 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 = { 1172, 2254 }, 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 = { 1172, 2254 }, 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 = { 1560, 1576 }, 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 = { 1560, 1576 }, 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 = { 1560, 1576 }, 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 = { 1560, 2254 }, 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 = { 1560, 2254 }, 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 = { 1560, 2254 }, 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 = { 1560 }, 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 = { 1560 }, 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 = { 1560 }, 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 = { 8, 1560 }, 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 = { 8, 1560 }, 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 = { 8, 1560 }, 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 = { 1288, 1560 }, 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 = { 1288, 1560 }, 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 = { 1288, 1560 }, 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 = { 1630, 1636 }, 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 = { 1630, 1636 }, 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 = { 1630, 1636 }, 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 = { 1630, 1641 }, 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 = { 1630, 1641 }, 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 = { 1630, 1641 }, 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 = { 1630, 1636 }, 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 = { 1630, 1636 }, 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 = { 1630, 1636 }, 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 = { 1636, 1641 }, 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 = { 1636, 1641 }, 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 = { 1636, 1641 }, 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 = { 1636, 1641 }, 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 = { 1636, 1641 }, 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 = { 1636, 1641 }, 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 = { 1630, 1641 }, 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 = { 1630, 1641 }, 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 = { 1630, 1641 }, 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 = { 1624, 1646 }, 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 = { 1624, 1646 }, 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 = { 1624, 1646 }, 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 = { 1624, 1646 }, 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 = { 1624, 1646 }, 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 = { 1624, 1646 }, 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 = { 1560, 1624 }, 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 = { 1560, 1624 }, 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 = { 1560, 1624 }, 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 = { 1624, 2254 }, 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 = { 1624, 2254 }, 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 = { 1624, 2254 }, 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 = { 1576, 1646 }, 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 = { 1576, 1646 }, 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 = { 1576, 1646 }, 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 = { 1628, 1634 }, 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 = { 1628, 1634 }, 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 = { 1628, 1639 }, 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 = { 1628, 1639 }, 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 = { 1628, 1634 }, 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 = { 1628, 1634 }, 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 = { 1634, 1639 }, 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 = { 1634, 1639 }, 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 = { 1634, 1639 }, 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 = { 1634, 1639 }, 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 = { 1628, 1639 }, 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 = { 1628, 1639 }, 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 = { 1645, 1648 }, 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 = { 1645, 1648 }, 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 = { 1645, 1648 }, 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 = { 1645, 1648 }, 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 = { 10797 }, 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 = { 10827 }, 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 = { 10771 }, 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 = { 10799 }, 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 = { 10780 }, 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 = { 10815 }, 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 = { 10800 }, 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 = { 10766 }, 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 = { 10786 }, 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 = { 10820 }, 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 = { 10781 }, 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 = { 10769 }, 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 = { 10779 }, 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 = { 10768 }, 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 = { 10776 }, 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 = { 10767 }, 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 = { 10807 }, 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 = { 10787 }, 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 = { 10772 }, 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 = { 10798 }, 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 = { 10816 }, 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 = { 10791 }, 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 = { 10789 }, 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 = { 10793 }, 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 = { 10785 }, 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 = { 10821 }, 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 = { 10794 }, 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 = { 10813 }, 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 = { 10778 }, 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 = { 10828 }, 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 = { 10823 }, 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 = { 10824 }, 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 = { 10774 }, 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 = { 10803 }, 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 = { 10801 }, 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 = { 10792 }, 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 = { 10819 }, 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 = { 10808 }, 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 = { 10783 }, 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 = { 10795 }, 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 = { 10805 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1418, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 1468, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 2254, 8134 }, 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 = { 7955 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHash = 363, }, + ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7955 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHash = 36830, }, + ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7955 }, 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 = { 1256, 1630 }, 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 = { 1256, 1630 }, 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 = { 1256, 1630 }, 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 = { 1256, 1630 }, 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 = { 1261, 1636 }, 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 = { 1261, 1636 }, 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 = { 1261, 1636 }, 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 = { 1261, 1636 }, 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 = { 1264, 1646 }, 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 = { 1264, 1646 }, 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 = { 1264, 1646 }, 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 = { 1264, 1646 }, 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 = { 1252, 7163 }, 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 = { 1252, 7163 }, 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 = { 1252, 7163 }, 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 = { 1252, 7163 }, 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 = { 1624, 3766 }, 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 = { 1624, 3766 }, 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 = { 1646, 7880 }, 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 = { 1646, 7880 }, 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 = { 1885, 4734 }, 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 = { 1885, 4734 }, 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 = { 1885, 4734 }, 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 = { 1885, 4734 }, 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 = { 1885, 4224 }, 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 = { 1885, 4224 }, 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 = { 1885, 4224 }, 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 = { 1885, 4224 }, 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 = { 1801, 2001 }, 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 = { 1801, 2001 }, 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 = { 1801, 2001 }, 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 = { 1801, 2001 }, 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 = { 1793, 5491 }, 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 = { 5491 }, 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 = { 5491 }, 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 = { 5491 }, 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 = { 5491 }, 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 = { 1795 }, 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 = { 1795 }, 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 = { 1795 }, 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 = { 5682 }, 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 = { 5682 }, 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 = { 5682 }, 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 = { 5682 }, 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 = { 2603, 9109 }, 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 = { 2603, 9109 }, 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 = { 2603, 9109 }, 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 = { 2603, 9109 }, 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 = { 2603, 6764 }, 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 = { 2603, 6764 }, 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 = { 2603, 6764 }, 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 = { 2603, 6764 }, 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 = { 4517, 5996 }, 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 = { 4517, 5996 }, 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 = { 2750 }, 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 = { 2750 }, 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 = { 2162, 7991 }, 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 = { 2162, 7991 }, 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 = { 2162, 7991 }, 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 = { 2162, 7991 }, 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 = { 2163, 7994 }, 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 = { 2163, 7994 }, 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 = { 2163, 7994 }, 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 = { 2163, 7994 }, 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 = { 1727, 2164 }, 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 = { 1727, 2164 }, 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 = { 1727, 2164 }, 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 = { 1727, 2164 }, 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 = { 1736 }, 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 = { 1736 }, 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 = { 1738 }, 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 = { 1738 }, 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 = { 1739 }, 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 = { 1739 }, 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 = { 1743, 1750 }, 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 = { 1743, 1750 }, 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 = { 1743, 1750 }, 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 = { 1743, 1750 }, 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 = { 1803, 4386 }, 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 = { 1803, 4386 }, 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 = { 1803, 4386 }, 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 = { 1803, 4386 }, 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 = { 1803, 10697 }, 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 = { 1803, 10697 }, 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 = { 1803, 10697 }, 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 = { 1803, 10697 }, 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 = { 3293, 6730 }, 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 = { 3293, 6730 }, 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 = { 3293, 6730 }, 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 = { 3293, 6730 }, 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 = { 3293, 5383 }, 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 = { 3293, 5383 }, 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 = { 3293, 5383 }, 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 = { 3293, 5383 }, 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 = { 3295, 5383 }, 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 = { 3295, 5383 }, 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 = { 3295, 5383 }, 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 = { 3295, 5383 }, 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 = { 3295, 3385 }, 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 = { 3295, 3385 }, 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 = { 3295, 3385 }, 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 = { 3295, 3385 }, 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 = { 3383, 5383 }, 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 = { 3383, 5383 }, 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 = { 3383, 5383 }, 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 = { 3383, 5383 }, 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 = { 3470, 5383 }, 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 = { 3470, 5383 }, 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 = { 3470, 5383 }, 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 = { 3470, 5383 }, 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 = { 2502, 2774 }, 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 = { 2502, 2774 }, 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 = { 1522, 3569 }, 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 = { 1522, 3569 }, 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 = { 1522, 3569 }, 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 = { 1522, 3569 }, 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 = { 2270, 5683 }, 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 = { 2270, 5683 }, 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 = { 2270, 5683 }, 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 = { 2270, 5683 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 1900, 5010 }, 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 = { 2747, 3396 }, 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 = { 2747, 3396 }, 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 = { 2747, 3396 }, 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 = { 2747, 3396 }, 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 = { 2188, 2747 }, 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 = { 2188, 2747 }, 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 = { 2188, 2747 }, 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 = { 2188, 2747 }, 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 = { 2601, 10613 }, 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 = { 2601, 10613 }, 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 = { 2601, 10613 }, 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 = { 2601, 10613 }, 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 = { 2175, 2601 }, 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 = { 2175, 2601 }, 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 = { 2175, 2601 }, 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 = { 2175, 2601 }, 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 = { 2230, 7138 }, 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 = { 2230, 7138 }, 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 = { 2230, 7138 }, 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 = { 2230, 7138 }, 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 = { 9780 }, 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 = { 9780 }, 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 = { 8218, 9225 }, 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 = { 8218, 9225 }, 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 = { 8218, 9225 }, 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 = { 8218, 9225 }, 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 = { 9221, 9223 }, 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 = { 9221, 9223 }, 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 = { 9221, 9223 }, 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 = { 9221, 9223 }, 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 = { 1930, 1932 }, 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 = { 1930, 1932 }, 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 = { 1930, 1932 }, 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 = { 1930, 1932 }, 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 = { 10418, 10610 }, 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 = { 10418, 10610 }, 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 = { 5272, 10037 }, 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 = { 5272, 10037 }, 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 = { 5272, 10037 }, 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 = { 5272, 10037 }, 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 = { 10038, 10042 }, 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 = { 10038, 10042 }, 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 = { 10038, 10042 }, 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 = { 10038, 10042 }, 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 = { 2583, 5728 }, 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 = { 2583, 5728 }, 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 = { 2583, 5728 }, 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 = { 2583, 5728 }, 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 = { 1779, 10403 }, 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 = { 1779, 10403 }, 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 = { 1779, 10403 }, 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 = { 1779, 10403 }, 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 = { 1650, 10458 }, 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 = { 10018, 10478 }, 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 = { 10565, 10573 }, 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 = { 10565, 10573 }, 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 = { 10565, 10573 }, 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 = { 10565, 10573 }, 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 = { 1196, 6072 }, 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 = { 1196, 6072 }, 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 = { 1196, 6072 }, 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 = { 1196, 6072 }, 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 = { 2032, 2565 }, 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 = { 2032, 2565 }, 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 = { 2032, 2565 }, 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 = { 2032, 2565 }, 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 = { 2035, 2567 }, 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 = { 2035, 2567 }, 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 = { 2035, 2567 }, 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 = { 2035, 2567 }, 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 = { 2039, 2568 }, 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 = { 2039, 2568 }, 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 = { 2039, 2568 }, 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 = { 2039, 2568 }, 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 = { 5032, 7289 }, 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 = { 5031, 7288 }, 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 = { 5033, 7290 }, 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 = { 7276, 7291 }, 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 = { 4402, 7292 }, 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 = { 4402, 7292 }, 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 = { 4402, 7292 }, 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 = { 4402, 7292 }, 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 = { 2983, 7163 }, 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 = { 2983, 7163 }, 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 = { 2983, 7163 }, 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 = { 2983, 7163 }, 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 = { 1868, 4179 }, 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 = { 1868, 4179 }, 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 = { 1868, 4179 }, 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 = { 1868, 4179 }, 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 = { 1863, 1879 }, 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 = { 1863, 1879 }, 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 = { 1863, 1879 }, 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 = { 1863, 1879 }, 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 = { 1864, 1880 }, 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 = { 1864, 1880 }, 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 = { 1864, 1880 }, 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 = { 1864, 1880 }, 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 = { 4999, 9968 }, 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 = { 4999, 9968 }, 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 = { 4999, 9968 }, 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 = { 4999, 9968 }, 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 = { 3175, 9977 }, 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 = { 3175, 9977 }, 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 = { 3175, 9977 }, 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 = { 3175, 9977 }, 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 = { 1650, 5774 }, 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 = { 1650, 5774 }, 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 = { 1650, 5774 }, 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 = { 1650, 5774 }, 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 = { 10007, 10018 }, 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 = { 10007, 10018 }, 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 = { 10007, 10018 }, 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 = { 10007, 10018 }, 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 = { 7247, 9833 }, 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 = { 7247, 9833 }, 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 = { 7247, 9833 }, 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 = { 7247, 9833 }, 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 = { 1080 }, 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 = { 1080 }, 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 = { 1183, 2020 }, 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 = { 1183, 2020 }, 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 = { 1183, 2020 }, 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 = { 1183, 2020 }, 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 = { 1184, 2021 }, 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 = { 1184, 2021 }, 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 = { 1184, 2021 }, 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 = { 1184, 2021 }, 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 = { 1182, 2022 }, 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 = { 1182, 2022 }, 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 = { 1182, 2022 }, 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 = { 1182, 2022 }, 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 = { 1190, 1191 }, 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 = { 1190, 1191 }, 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 = { 1190, 1191 }, 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 = { 1190, 1191 }, 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 = { 1189, 1190 }, 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 = { 1189, 1190 }, 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 = { 1189, 1190 }, 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 = { 1189, 1190 }, 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 = { 1189, 1191 }, 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 = { 1189, 1191 }, 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 = { 1189, 1191 }, 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 = { 1189, 1191 }, 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 = { 9407 }, 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 = { 9407 }, 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 = { 9407 }, 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 = { 9407 }, 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 = { 4726 }, 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 = { 4726 }, 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 = { 4726 }, 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 = { 4726 }, 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 = { 6268 }, 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 = { 6268 }, 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 = { 6268 }, 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 = { 6268 }, 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 = { 59 }, 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 = { 59 }, 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 = { 58 }, 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 = { 58 }, 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 = { 60 }, 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 = { 60 }, 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 = { 45 }, 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 = { 45 }, 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 = { 48 }, 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 = { 48 }, 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 = { 57 }, 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 = { 57 }, 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 = { 54 }, 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 = { 54 }, 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 = { 52 }, 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 = { 52 }, 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 = { 50 }, 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 = { 50 }, 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 = { 56 }, 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 = { 56 }, 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 = { 44 }, 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 = { 44 }, 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 = { 3031 }, 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 = { 3031 }, 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 = { 3031 }, 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 = { 3031 }, 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 = { 3031 }, 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 = { 3031 }, 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 = { 2997 }, 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 = { 2997 }, 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 = { 2997 }, 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 = { 2997 }, 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 = { 2997 }, 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 = { 2997 }, 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 = { 3031, 3617 }, 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 = { 2132, 2636 }, 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 = { 2147, 2638 }, 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 = { 2130, 2634 }, 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 = { 1809, 1813, 1818 }, 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 = { 1809, 1813, 1818 }, 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 = { 1808, 1814, 1818 }, 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 = { 1808, 1814, 1818 }, 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 = { 1808, 1813, 1819 }, 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 = { 1808, 1813, 1819 }, 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 = { 9145, 9262 }, 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 = { 9145, 9262 }, 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 = { 1809, 1814, 1819 }, 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 = { 1809, 1814, 1819 }, 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 = { 1809, 1814, 1819 }, 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 = { 1809, 1814, 1819 }, 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 = { 1809, 1814, 1819 }, 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 = { 1809, 1814, 1819 }, 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 = { 1807, 1814 }, 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 = { 1807, 1814 }, 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 = { 1819, 5875 }, 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 = { 1819, 5875 }, 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 = { 1809, 4738 }, 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 = { 1809, 4738 }, 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 = { 6069, 9145 }, 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 = { 6069, 9145 }, 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 = { 10765 }, 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 = { 7112, 7115 }, 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 = { 7112, 7115 }, 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 = { 7112, 7115 }, 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 = { 7112, 7115 }, 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 = { 7112, 7115 }, 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 = { 7112, 7115 }, 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 = { 4035, 7116 }, 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 = { 4035, 7116 }, 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 = { 4035, 7116 }, 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 = { 4035, 7116 }, 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 = { 4035, 7116 }, 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 = { 4035, 7116 }, 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 = { 4036, 7120 }, 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 = { 4036, 7120 }, 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 = { 4036, 7120 }, 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 = { 4036, 7120 }, 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 = { 4036, 7120 }, 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 = { 4036, 7120 }, 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 = { 7124, 7128 }, 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 = { 7124, 7128 }, 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 = { 7124, 7128 }, 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 = { 7124, 7128 }, 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 = { 7124, 7128 }, 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 = { 7124, 7128 }, 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 = { 4037, 7130 }, 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 = { 4037, 7130 }, 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 = { 4037, 7130 }, 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 = { 4037, 7130 }, 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 = { 4037, 7130 }, 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 = { 4037, 7130 }, 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 = { 3361, 3422 }, 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 = { 3361, 3422 }, 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 = { 3361, 3422 }, 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 = { 3361, 3422 }, 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 = { 3361, 3422 }, 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 = { 3361, 3422 }, 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 = { 3366, 4047 }, 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 = { 3366, 4047 }, 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 = { 3366, 4047 }, 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 = { 3366, 4047 }, 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 = { 3366, 4047 }, 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 = { 3366, 4047 }, 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 = { 3371, 4039 }, 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 = { 3371, 4039 }, 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 = { 3371, 4039 }, 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 = { 3371, 4039 }, 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 = { 3371, 4039 }, 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 = { 3371, 4039 }, 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 = { 3372, 4041 }, 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 = { 3372, 4041 }, 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 = { 3372, 4041 }, 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 = { 3373, 4042 }, 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 = { 3373, 4042 }, 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 = { 3373, 4042 }, 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 = { 3368, 4048 }, 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 = { 3368, 4048 }, 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 = { 3368, 4048 }, 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 = { 10720, 10723 }, 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 = { 10720, 10723 }, 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 = { 10720, 10723 }, 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 = { 10720, 10723 }, 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 = { 10720, 10723 }, 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 = { 10720, 10723 }, 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 = { 9709, 9715 }, 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 = { 9709, 9715 }, 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 = { 9709, 9715 }, 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 = { 9709, 9715 }, 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 = { 9709, 9715 }, 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 = { 9709, 9715 }, 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 = { 3363, 4044 }, 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 = { 3363, 4044 }, 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 = { 3363, 4044 }, 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 = { 3364, 4040 }, 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 = { 3364, 4040 }, 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 = { 3364, 4040 }, 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 = { 3365, 4045 }, 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 = { 3365, 4045 }, 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 = { 3365, 4045 }, 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 = { 3362, 4043 }, 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 = { 3362, 4043 }, 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 = { 3362, 4043 }, 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 = { 6166, 6167 }, 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 = { 6166, 6167 }, 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 = { 6166, 6167 }, 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 = { 6166, 6167 }, 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 = { 6166, 6167 }, 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 = { 6166, 6167 }, 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 = { 3369, 4049 }, 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 = { 3369, 4049 }, 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 = { 3369, 4049 }, 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 = { 3369, 4049 }, 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 = { 3369, 4049 }, 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 = { 3369, 4049 }, 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 = { 3370, 9706 }, 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 = { 3370, 9706 }, 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 = { 3370, 9706 }, 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 = { 3370, 9706 }, 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 = { 3370, 9706 }, 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 = { 3370, 9706 }, 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 = { 3367, 4977 }, 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 = { 3367, 4977 }, 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 = { 3367, 4977 }, 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 = { 3367, 4977 }, 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 = { 3367, 4977 }, 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 = { 3367, 4977 }, 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 = { 1146, 1148 }, 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 = { 1146, 1148 }, 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 = { 1146, 1148 }, 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 = { 1146, 1148 }, 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 = { 1148, 10183 }, 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 = { 1148, 10183 }, 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 = { 9842 }, 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 = { 9842 }, 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 = { 1765 }, 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 = { 1765 }, 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 = { 1764 }, 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 = { 1764 }, 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 = { 1763 }, 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 = { 1763 }, 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 = { 5771 }, 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 = { 5771 }, 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 = { 10004 }, 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 = { 10004 }, 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 = { 5718 }, 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 = { 5718 }, 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 = { 5713 }, 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 = { 5713 }, 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 = { 5717 }, 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 = { 5717 }, 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 = { 1993, 5001 }, 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 = { 1993, 5001 }, 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 = { 1994, 5001 }, 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 = { 1994, 5001 }, 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 = { 1851, 2954 }, 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 = { 1851, 2954 }, 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 = { 1850, 2953 }, 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 = { 1850, 2953 }, 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 = { 1853, 2952 }, 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 = { 1853, 2952 }, 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 = { 3375, 4221 }, 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 = { 3375, 4221 }, 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 = { 1854, 9968 }, 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 = { 1854, 9968 }, 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 = { 5413, 6526 }, 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 = { 5646, 7232 }, 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 = { 1221, 2175 }, 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 = { 1221, 2175 }, 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 = { 1221, 2175 }, 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 = { 1221, 2175 }, 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 = { 3277, 4179 }, 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 = { 3277, 4179 }, 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 = { 1907, 3277 }, 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 = { 1907, 3277 }, 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 = { 1517, 3135 }, 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 = { 1517, 3135 }, 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 = { 1517, 3135 }, 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 = { 1517, 3135 }, 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 = { 2714, 2715 }, 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 = { 2714, 2715 }, 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 = { 2716 }, 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 = { 2716 }, 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 = { 1576, 1583 }, 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 = { 1576, 1583 }, 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 = { 1565, 1573 }, 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 = { 1565, 1573 }, 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 = { 1585, 1591 }, 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 = { 1585, 1591 }, 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 = { 1950 }, 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 = { 1950 }, 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 = { 1806 }, 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 = { 1806 }, 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 = { 2469, 5056 }, 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 = { 2469, 5056 }, 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 = { 2469, 5056 }, 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 = { 2469, 5056 }, 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 = { 6354, 6749 }, 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 = { 6354, 6749 }, 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 = { 2179, 6125 }, 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 = { 2179, 6125 }, 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 = { 3560, 5852 }, 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 = { 5850, 5852 }, 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 = { 5850, 5852 }, 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 = { 6924, 6925 }, 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 = { 6924, 6925 }, 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 = { 6156 }, 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 = { 6156 }, 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 = { 4939 }, 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 = { 4939 }, 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 = { 5894, 10586 }, 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 = { 5894, 10586 }, 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 = { 2270, 5036 }, 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 = { 2270, 5036 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 6172, 9166 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 5037, 9291 }, 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 = { 1978, 3029 }, 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 = { 1978, 3029 }, 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 = { 1978, 3029 }, 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 = { 1978, 3029 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2917, 2918 }, 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 = { 2910 }, 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 = { 2910 }, 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 = { 2910 }, 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 = { 2910 }, 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 = { 9307 }, 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 = { 9307 }, 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 = { 9307 }, 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 = { 9307 }, 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 = { 9307, 9337 }, 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 = { 9307, 9337 }, 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 = { 9307, 9337 }, 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 = { 9307, 9337 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 1770, 1771 }, 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 = { 2917, 9322 }, 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 = { 2917, 9322 }, 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 = { 2917, 9322 }, 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 = { 2917, 9322 }, 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 = { 9321 }, 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 = { 9321 }, 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 = { 9280 }, 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 = { 9280 }, 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 = { 9280 }, 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 = { 9280 }, 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 = { 9338 }, 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 = { 9338 }, 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 = { 9338 }, 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 = { 9338 }, 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 = { 1774 }, 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 = { 1774 }, 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 = { 1774 }, 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 = { 1774 }, 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 = { 9330 }, 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 = { 9330 }, 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 = { 9330 }, 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 = { 9330 }, 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 = { 2495, 9968 }, 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 = { 2495, 9968 }, 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 = { 2495, 9968 }, 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 = { 2495, 9968 }, 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 = { 3179, 9977 }, 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 = { 3179, 9977 }, 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 = { 3179, 9977 }, 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 = { 3179, 9977 }, 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 = { 1880, 9288 }, 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 = { 1880, 9288 }, 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 = { 1880, 9288 }, 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 = { 1880, 9288 }, 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 = { 1879, 9285 }, 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 = { 1879, 9285 }, 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 = { 1879, 9285 }, 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 = { 1879, 9285 }, 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 = { 1878, 9290 }, 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 = { 1878, 9290 }, 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 = { 1878, 9290 }, 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 = { 1878, 9290 }, 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 = { 7490, 7498 }, 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 = { 7490, 7498 }, 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 = { 7490, 7498 }, 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 = { 7490, 7498 }, 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 = { 7490, 7512 }, 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 = { 7490, 7512 }, 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 = { 3882, 4028 }, 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 = { 3882, 4028 }, 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 = { 3882, 4028 }, 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 = { 3882, 4028 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 4068, 9551 }, 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 = { 1774, 3386 }, 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 = { 1774, 3386 }, 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 = { 1774, 3386 }, 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 = { 1774, 3386 }, 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 = { 2918, 3384 }, 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 = { 2918, 3384 }, 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 = { 2918, 3384 }, 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 = { 2918, 3384 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 2908, 2909 }, 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 = { 1771, 3066 }, 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 = { 1771, 3066 }, 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 = { 1771, 3066 }, 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 = { 1771, 3066 }, 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 = { 3695, 6898 }, 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 = { 3695, 6898 }, 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 = { 3695, 6898 }, 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 = { 3695, 6898 }, 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 = { 519 }, 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 = { 519 }, 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 = { 485 }, 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 = { 485 }, 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 = { 464 }, 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 = { 464 }, 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 = { 491 }, 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 = { 491 }, 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 = { 528 }, 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 = { 528 }, 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 = { 488 }, 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 = { 488 }, 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 = { 476 }, 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 = { 476 }, 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 = { 487 }, 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 = { 487 }, 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 = { 484 }, 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 = { 484 }, 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 = { 229 }, 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 = { 229 }, 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 = { 507 }, 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 = { 507 }, 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 = { 509 }, 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 = { 509 }, 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 = { 513 }, 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 = { 513 }, 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 = { 510 }, 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 = { 510 }, 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 = { 475 }, 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 = { 475 }, 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 = { 525 }, 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 = { 525 }, 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 = { 506 }, 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 = { 506 }, 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 = { 505 }, 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 = { 505 }, 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 = { 503 }, 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 = { 503 }, 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 = { 326 }, 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 = { 326 }, 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 = { 250 }, 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 = { 250 }, 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 = { 329 }, 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 = { 329 }, 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 = { 259 }, 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 = { 259 }, 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 = { 359 }, 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 = { 359 }, 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 = { 324 }, 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 = { 324 }, 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 = { 248 }, 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 = { 248 }, 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 = { 389 }, 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 = { 389 }, 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 = { 274 }, 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 = { 274 }, 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 = { 382 }, 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 = { 382 }, 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 = { 370 }, 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 = { 370 }, 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 = { 276 }, 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 = { 276 }, 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 = { 277 }, 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 = { 277 }, 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 = { 357 }, 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 = { 357 }, 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 = { 395 }, 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 = { 395 }, 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 = { 313 }, 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 = { 313 }, 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 = { 249 }, 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 = { 249 }, 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 = { 264 }, 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 = { 264 }, 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 = { 336 }, 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 = { 336 }, 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 = { 349 }, 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 = { 349 }, 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 = { 231 }, 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 = { 231 }, 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 = { 366 }, 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 = { 366 }, 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 = { 514 }, 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 = { 514 }, 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 = { 500 }, 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 = { 500 }, 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 = { 501 }, 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 = { 501 }, 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 = { 471 }, 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 = { 471 }, 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 = { 355 }, 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 = { 355 }, 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 = { 384 }, 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 = { 384 }, 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 = { 387 }, 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 = { 387 }, 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 = { 390 }, 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 = { 390 }, 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 = { 410 }, 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 = { 410 }, 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 = { 275 }, 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 = { 275 }, 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 = { 385 }, 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 = { 385 }, 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 = { 315 }, 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 = { 315 }, 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 = { 365 }, 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 = { 365 }, 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 = { 381 }, 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 = { 381 }, 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 = { 281 }, 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 = { 281 }, 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 = { 263 }, 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 = { 263 }, 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 = { 320 }, 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 = { 320 }, 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 = { 391 }, 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 = { 391 }, 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 = { 380 }, 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 = { 380 }, 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 = { 402 }, 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 = { 402 }, 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 = { 392 }, 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 = { 392 }, 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 = { 316 }, 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 = { 316 }, 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 = { 330 }, 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 = { 330 }, 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 = { 236 }, 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 = { 236 }, 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 = { 233 }, 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 = { 233 }, 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 = { 278 }, 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 = { 278 }, 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 = { 350 }, 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 = { 350 }, 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 = { 261 }, 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 = { 261 }, 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 = { 309 }, 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 = { 309 }, 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 = { 358 }, 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 = { 358 }, 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 = { 5480 }, 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 = { 5458, 5464 }, 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 = { 5479 }, 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 = { 5459 }, 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 = { 5463 }, 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 = { 5478 }, 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 = { 5461 }, 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 = { 5460 }, 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 = { 5457 }, 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 = { 5385 }, 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 = { 5101, 5102 }, 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 = { 4299, 10025, 10030 }, 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 = { 7441, 7442 }, 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 = { 6856 }, 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 = { 6329, 9477 }, 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 = { 4986 }, 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 = { 4986 }, 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 = { 9809, 10411 }, 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 = { 5483 }, 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 = { 9756 }, 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 = { 7475, 7476 }, 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 = { 7475, 7476 }, 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 = { 10526 }, 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 = { 10526 }, 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 = { 6262 }, 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 = { 10523 }, 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 = { 10523 }, 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 = { 10082 }, 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 = { 10525 }, 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 = { 6266 }, 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 = { 6266 }, 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 = { 7189 }, 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 = { 6289 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 10358 }, 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 = { 10357 }, 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 = { 5097 }, 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 = { 9996, 9997, 9998 }, 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 = { 9996, 9997, 9998 }, 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 = { 6016, 6017 }, 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 = { 5796, 5797 }, 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 = { 6647, 7883 }, 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 = { 6647, 7883 }, 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 = { 9851 }, 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 = { 9851 }, 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 = { 10110, 10110.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 = { 10110, 10110.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 = { 5487 }, 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 = { 5863, 5864 }, 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 = { 6692, 6697, 6863 }, 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 = { 4669 }, 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 = { 4669 }, 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 = { 7322, 7323 }, 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 = { 6530, 6532, 9830 }, 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 = { 6600 }, 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 = { 6600 }, 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 = { 6476 }, 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 = { 6476 }, 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 = { 6596, 6597 }, 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 = { 6596, 6597 }, 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 = { 6672, 6673 }, 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 = { 6672, 6673 }, 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 = { 5093, 5094 }, 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 = { 5093, 5094 }, 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 = { 10013, 10014 }, 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 = { 10013, 10014 }, 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 = { 5915, 5916 }, 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 = { 5915, 5916 }, 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 = { 7444 }, 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 = { 8224, 8225 }, 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 = { 8224, 8225 }, 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 = { 7202, 7203 }, 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 = { 6625, 6626, 6627, 7267 }, 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 = { 6625, 6626, 6627, 7267 }, 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 = { 7139 }, 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 = { 7139 }, 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 = { 6659 }, 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 = { 6659 }, 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 = { 6372 }, 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 = { 6474, 6475 }, 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 = { 6474, 6475 }, 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 = { 7478, 10099 }, 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 = { 7478, 10099 }, 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 = { 6682, 9559 }, 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 = { 6682, 9559 }, 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 = { 5462 }, 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 = { 10620 }, 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 = { 4695 }, 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 = { 4695 }, 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 = { 5456, 5756, 10233 }, 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 = { 6328 }, 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 = { 10048, 10049 }, 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 = { 10048, 10049 }, 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 = { 10115 }, 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 = { 10115 }, 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 = { 9535, 9537, 10305, 10316 }, 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 = { 6556 }, 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 = { 6556 }, 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 = { 7186, 7187, 7188 }, 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 = { 7186, 7187, 7188 }, 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 = { 6628, 6629 }, 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 = { 6628, 6629 }, 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 = { 10252, 10253 }, 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 = { 10252, 10253 }, 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 = { 5068 }, 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 = { 5068 }, 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 = { 7178 }, 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 = { 7178 }, 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 = { 6157 }, 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 = { 6157 }, 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 = { 9944 }, 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 = { 9944 }, 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 = { 5122, 10621 }, 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 = { 5122, 10621 }, 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 = { 6186 }, 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 = { 10234 }, 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 = { 4704, 4705 }, 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 = { 4704, 4705 }, 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 = { 7487, 7502 }, 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 = { 5105 }, 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 = { 10538 }, 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 = { 10538 }, 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 = { 9761 }, 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 = { 9761 }, 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 = { 10549 }, 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 = { 10549 }, 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 = { 10595 }, 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 = { 10606 }, 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 = { 10606 }, 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 = { 10591 }, 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 = { 10591 }, 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 = { 10603 }, 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 = { 10603 }, 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 = { 10604 }, 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 = { 10604 }, 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 = { 10607 }, 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 = { 10607 }, 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 = { 10598 }, 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 = { 10598 }, 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 = { 10590 }, 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 = { 10590 }, 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 = { 10589 }, 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 = { 10589 }, 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 = { 10602 }, 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 = { 10602 }, 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 = { 10594 }, 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 = { 10594 }, 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 = { 10593 }, 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 = { 10593 }, 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 = { 10605 }, 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 = { 10605 }, 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 = { 10599 }, 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 = { 10592 }, 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 = { 10601 }, 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 = { 2849 }, 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 = { 2854 }, 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 = { 2855 }, 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 = { 2850 }, 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 = { 2859 }, 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 = { 3588 }, 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 = { 6616 }, 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 = { 6606 }, 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 = { 6607 }, 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 = { 6605 }, 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 = { 6610 }, 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 = { 6611 }, 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 = { 6617 }, 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 = { 6618 }, 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 = { 6604 }, 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 = { 6608 }, 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 = { 6612 }, 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 = { 6613 }, 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 = { 6609 }, 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 = { 6620 }, 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 = { 6619 }, 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 = { 6614 }, 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 = { 6615 }, 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 = { 231 }, 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 = { 250 }, 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 = { 264 }, 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 = { 471 }, 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 = { 275 }, 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 = { 505 }, 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 = { 313 }, 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 = { 385 }, 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 = { 350 }, 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 = { 357 }, 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 = { 358 }, 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 = { 384 }, 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 = { 390 }, 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 = { 392 }, 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 = { 463 }, 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 = { 523 }, 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 = { 472 }, 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 = { 232 }, 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 = { 240 }, 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 = { 458 }, 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 = { 530 }, 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 = { 270 }, 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 = { 272 }, 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 = { 273 }, 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 = { 314 }, 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 = { 490 }, 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 = { 318 }, 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 = { 388 }, 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 = { 526 }, 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 = { 470 }, 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 = { 518 }, 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 = { 331 }, 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 = { 361 }, 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 = { 346 }, 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 = { 397 }, 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 = { 398 }, 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 = { 401 }, 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 = { 317 }, 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 = { 468 }, 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 = { 499 }, 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 = { 517 }, 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 = { 360 }, 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 = { 262 }, 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 = { 516 }, 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 = { 368 }, 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/Export/Scripts/crucible.lua b/src/Export/Scripts/crucible.lua index 7665c96aba..e3ef45783d 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") From 28dba4c40c60853215738f735fe6f3c42019b596 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 15:38:54 +0300 Subject: [PATCH 03/11] Export enchant mod data --- src/Data/ModEnchantment.lua | 1634 +++++++++++++++++++++++++++++++++++ src/Export/Scripts/mods.lua | 4 + 2 files changed, 1638 insertions(+) create mode 100644 src/Data/ModEnchantment.lua diff --git a/src/Data/ModEnchantment.lua b/src/Data/ModEnchantment.lua new file mode 100644 index 0000000000..3538ef78b8 --- /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 = { 3488 }, 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 = { 3489 }, 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 = { 3490 }, 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 = { 3491 }, 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 = { 3541 }, 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 = { 3542 }, 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 = { 3543 }, 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 = { 3544 }, 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 = { 3545 }, 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 = { 3546 }, 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 = { 3547 }, 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 = { 3548 }, 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 = { 3504 }, 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 = { 3505 }, 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 = { 3506 }, 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 = { 3507 }, 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 = { 3508 }, 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 = { 3509 }, 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 = { 3510 }, 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 = { 3511 }, 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 = { 3512 }, 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 = { 3513 }, 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 = { 3514 }, 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 = { 3515 }, 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 = { 3516 }, 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 = { 3517 }, 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 = { 3518 }, 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 = { 3519 }, 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 = { 3549 }, 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 = { 3550 }, 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 = { 3551 }, 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 = { 3552 }, 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 = { 3520 }, 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 = { 3521 }, 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 = { 3522 }, 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 = { 3523 }, 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 = { 3496 }, 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 = { 3497 }, 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 = { 3498 }, 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 = { 3499 }, 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 = { 3492 }, 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 = { 3493 }, 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 = { 3494 }, 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 = { 3495 }, 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 = { 3500 }, 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 = { 3501 }, 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 = { 3502 }, 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 = { 3503 }, 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 = { 3524 }, 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 = { 3525 }, 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 = { 3526 }, 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 = { 3527 }, 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 = { 3528 }, 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 = { 3529 }, 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 = { 3530 }, 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 = { 3531 }, 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 = { 4023 }, 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 = { 4024 }, 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 = { 4025 }, 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 = { 4026 }, 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 = { 3247 }, 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 = { 3247 }, 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 = { 3247 }, 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 = { 3172 }, 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 = { 3172 }, 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 = { 3172 }, 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 = { 3240 }, 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 = { 3240 }, 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 = { 3240 }, 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 = { 3241 }, 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 = { 3241 }, 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 = { 3241 }, 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 = { 3242, 3242.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 = { 3242, 3242.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 = { 3242, 3242.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 = { 3243 }, 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 = { 3243 }, 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 = { 3243 }, 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 = { 3244 }, 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 = { 3244 }, 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 = { 3244 }, 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 = { 3245 }, 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 = { 3245 }, 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 = { 3245 }, 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 = { 3246 }, 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 = { 3246 }, 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 = { 3246 }, 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 = { 3250 }, 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 = { 3250 }, 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 = { 3250 }, 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 = { 3249 }, 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 = { 3249 }, 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 = { 3249 }, 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 = { 3248 }, 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 = { 3248 }, 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 = { 3248 }, 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 = { 3556 }, 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 = { 3556 }, 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 = { 3556 }, 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 = { 3312 }, 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 = { 3312 }, 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 = { 3312 }, 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 = { 3314 }, 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 = { 3314 }, 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 = { 3314 }, 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 = { 6364 }, 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 = { 6364 }, 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 = { 6364 }, 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 = { 3173 }, 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 = { 3173 }, 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 = { 3414 }, 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 = { 3414 }, 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 = { 3415 }, 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 = { 3415 }, 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 = { 3417 }, 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 = { 3417 }, 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 = { 3418 }, 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 = { 3418 }, 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 = { 3420 }, 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 = { 3420 }, 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 = { 3421 }, 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 = { 3421 }, 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 = { 6190 }, 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 = { 6190 }, 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 = { 4691 }, 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 = { 4691 }, 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 = { 4692 }, 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 = { 4692 }, 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 = { 3423 }, 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 = { 3423 }, 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 = { 3729 }, 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 = { 3729 }, 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 = { 3631 }, 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 = { 3631 }, 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 = { 4147 }, 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 = { 4147 }, 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 = { 4148 }, 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 = { 4148 }, 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 = { 3978 }, 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 = { 3978 }, 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 = { 4120 }, 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 = { 4120 }, 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 = { 3807 }, 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 = { 3807 }, 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 = { 3710 }, 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 = { 3710 }, 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 = { 3632 }, 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 = { 3632 }, 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 = { 3665 }, 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 = { 3665 }, 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 = { 3683 }, 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 = { 3683 }, 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 = { 4751 }, 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 = { 4751 }, 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 = { 6135 }, 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 = { 6135 }, 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 = { 3666 }, 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 = { 3666 }, 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 = { 3711 }, 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 = { 3711 }, 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 = { 5090 }, 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 = { 5090 }, 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 = { 3734 }, 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 = { 3734 }, 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 = { 3735 }, 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 = { 3735 }, 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 = { 3731 }, 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 = { 3731 }, 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 = { 5103 }, 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 = { 5103 }, 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 = { 3744 }, 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 = { 3744 }, 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 = { 3724 }, 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 = { 3724 }, 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 = { 5245 }, 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 = { 5245 }, 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 = { 3633 }, 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 = { 3633 }, 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 = { 3693 }, 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 = { 3693 }, 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 = { 4146 }, 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 = { 4146 }, 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 = { 3737 }, 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 = { 3737 }, 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 = { 3634 }, 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 = { 3634 }, 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 = { 3708 }, 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 = { 3708 }, 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 = { 5866 }, 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 = { 5866 }, 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 = { 3733 }, 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 = { 3733 }, 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 = { 5887 }, 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 = { 5887 }, 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 = { 3728 }, 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 = { 3728 }, 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 = { 5905 }, 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 = { 5905 }, 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 = { 3681 }, 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 = { 3681 }, 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 = { 3692 }, 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 = { 3692 }, 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 = { 3419 }, 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 = { 3419 }, 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 = { 6259 }, 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 = { 6259 }, 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 = { 4145 }, 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 = { 4145 }, 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 = { 3635 }, 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 = { 3635 }, 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 = { 3636 }, 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 = { 3636 }, 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 = { 3738 }, 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 = { 3738 }, 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 = { 3680 }, 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 = { 3680 }, 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 = { 3732 }, 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 = { 3732 }, 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 = { 3653 }, 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 = { 3653 }, 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 = { 3684 }, 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 = { 3684 }, 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 = { 6523 }, 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 = { 6523 }, 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 = { 6531 }, 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 = { 6531 }, 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 = { 6545 }, 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 = { 6545 }, 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 = { 9399 }, 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 = { 9399 }, 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 = { 3668 }, 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 = { 3668 }, 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 = { 3637 }, 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 = { 3637 }, 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 = { 3638 }, 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 = { 3638 }, 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 = { 6559 }, 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 = { 6559 }, 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 = { 3717 }, 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 = { 3717 }, 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 = { 3669 }, 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 = { 3669 }, 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 = { 6632 }, 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 = { 6632 }, 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 = { 3709 }, 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 = { 3709 }, 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 = { 3685 }, 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 = { 3685 }, 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 = { 6623 }, 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 = { 6623 }, 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 = { 3658 }, 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 = { 3658 }, 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 = { 6660 }, 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 = { 6660 }, 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 = { 3639 }, 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 = { 3639 }, 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 = { 3678 }, 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 = { 3678 }, 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 = { 4143 }, 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 = { 4143 }, 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 = { 3741 }, 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 = { 3741 }, 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 = { 3686 }, 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 = { 3686 }, 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 = { 3640 }, 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 = { 3640 }, 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 = { 3641 }, 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 = { 3641 }, 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 = { 3642 }, 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 = { 3642 }, 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 = { 3719 }, 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 = { 3719 }, 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 = { 3720 }, 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 = { 3720 }, 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 = { 3721 }, 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 = { 3721 }, 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 = { 7140 }, 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 = { 7140 }, 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 = { 7184 }, 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 = { 7184 }, 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 = { 3687 }, 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 = { 3687 }, 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 = { 3670 }, 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 = { 3670 }, 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 = { 3654 }, 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 = { 3654 }, 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 = { 7199 }, 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 = { 7199 }, 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 = { 3671 }, 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 = { 3671 }, 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 = { 3736 }, 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 = { 3736 }, 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 = { 3672 }, 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 = { 3672 }, 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 = { 3643 }, 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 = { 3643 }, 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 = { 3688 }, 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 = { 3688 }, 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 = { 7336 }, 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 = { 7336 }, 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 = { 3659 }, 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 = { 3659 }, 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 = { 3660 }, 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 = { 3660 }, 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 = { 3644 }, 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 = { 3644 }, 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 = { 3645 }, 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 = { 3645 }, 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 = { 7482 }, 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 = { 7482 }, 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 = { 3423 }, 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 = { 3423 }, 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 = { 3661 }, 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 = { 3661 }, 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 = { 3646 }, 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 = { 3646 }, 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 = { 8226 }, 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 = { 8226 }, 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 = { 3725 }, 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 = { 3725 }, 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 = { 9386 }, 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 = { 9386 }, 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 = { 4029 }, 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 = { 4029 }, 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 = { 3647 }, 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 = { 3647 }, 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 = { 3742 }, 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 = { 3742 }, 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 = { 9560 }, 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 = { 9560 }, 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 = { 9617 }, 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 = { 9617 }, 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 = { 9692 }, 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 = { 9692 }, 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 = { 3673 }, 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 = { 3673 }, 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 = { 3662 }, 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 = { 3662 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 3655 }, 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 = { 3655 }, 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 = { 3462 }, 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 = { 3462 }, 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 = { 3648 }, 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 = { 3648 }, 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 = { 9822 }, 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 = { 9822 }, 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 = { 3649 }, 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 = { 3649 }, 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 = { 3714 }, 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 = { 3714 }, 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 = { 3679 }, 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 = { 3679 }, 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 = { 3726 }, 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 = { 3726 }, 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 = { 9964 }, 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 = { 9964 }, 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 = { 3674 }, 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 = { 3674 }, 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 = { 3663 }, 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 = { 3663 }, 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 = { 3689 }, 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 = { 3689 }, 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 = { 10028 }, 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 = { 10028 }, 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 = { 3745 }, 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 = { 3745 }, 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 = { 9992 }, 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 = { 9992 }, 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 = { 3690 }, 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 = { 3690 }, 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 = { 3730 }, 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 = { 3730 }, 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 = { 3743 }, 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 = { 3743 }, 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 = { 3739 }, 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 = { 3739 }, 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 = { 10044 }, 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 = { 10044 }, 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 = { 10043 }, 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 = { 10043 }, 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 = { 10081 }, 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 = { 10081 }, 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 = { 10094 }, 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 = { 10094 }, 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 = { 3650 }, 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 = { 3650 }, 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 = { 10100 }, 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 = { 10100 }, 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 = { 10104 }, 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 = { 10104 }, 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 = { 3651 }, 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 = { 3651 }, 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 = { 3652 }, 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 = { 3652 }, 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 = { 10210 }, 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 = { 10210 }, 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 = { 3675 }, 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 = { 3675 }, 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 = { 10242 }, 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 = { 10242 }, 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 = { 3740 }, 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 = { 3740 }, 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 = { 3676 }, 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 = { 3676 }, 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 = { 3702 }, 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 = { 3702 }, 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 = { 3699 }, 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 = { 3699 }, 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 = { 3700 }, 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 = { 3700 }, 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 = { 3701 }, 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 = { 3701 }, 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 = { 3656 }, 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 = { 3656 }, 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 = { 3664 }, 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 = { 3664 }, 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 = { 3698 }, 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 = { 3698 }, 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 = { 3677 }, 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 = { 3677 }, 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 = { 10360 }, 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 = { 10360 }, 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 = { 3722 }, 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 = { 3722 }, 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 = { 10383 }, 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 = { 10383 }, 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 = { 3682 }, 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 = { 3682 }, 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 = { 10408 }, 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 = { 10408 }, 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 = { 3727 }, 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 = { 3727 }, 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 = { 3715 }, 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 = { 3715 }, 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 = { 3657 }, 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 = { 3657 }, 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 = { 10546 }, 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 = { 10546 }, 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 = { 4144 }, 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 = { 4144 }, 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 = { 10584 }, 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 = { 10584 }, 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 = { 9760 }, 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 = { 9760 }, 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 = { 3716 }, 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 = { 3716 }, 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 = { 3691 }, 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 = { 3691 }, 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 = { 6685 }, 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 = { 6685 }, 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 = { 4510 }, 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 = { 4510 }, 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 = { 4509 }, 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 = { 4509 }, 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 = { 4511 }, 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 = { 4511 }, 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 = { 7273 }, 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 = { 7273 }, 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 = { 3994 }, 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 = { 3994 }, 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 = { 2801 }, 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 = { 2801 }, 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 = { 4000 }, 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 = { 4000 }, 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 = { 3957 }, 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 = { 3957 }, 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 = { 3972 }, 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 = { 3972 }, 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 = { 4706 }, 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 = { 4706 }, 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 = { 4707 }, 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 = { 4707 }, 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 = { 4708 }, 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 = { 6134 }, 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 = { 6134 }, 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 = { 6136 }, 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 = { 6136 }, 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 = { 4752 }, 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 = { 4752 }, 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 = { 4750 }, 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 = { 4750 }, 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 = { 4150 }, 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 = { 4150 }, 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 = { 3809 }, 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 = { 3809 }, 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 = { 4149 }, 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 = { 4149 }, 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 = { 3808 }, 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 = { 3808 }, 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 = { 4675 }, 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 = { 4675 }, 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 = { 4676 }, 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 = { 4027 }, 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 = { 4027 }, 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 = { 4719 }, 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 = { 4719 }, 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 = { 4720 }, 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 = { 4720 }, 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 = { 3937 }, 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 = { 3937 }, 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 = { 3828 }, 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 = { 3828 }, 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 = { 4722 }, 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 = { 4014 }, 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 = { 4014 }, 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 = { 3923 }, 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 = { 3923 }, 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 = { 3896 }, 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 = { 3896 }, 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 = { 3829 }, 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 = { 3829 }, 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 = { 4966 }, 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 = { 3865 }, 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 = { 3865 }, 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 = { 3954 }, 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 = { 3954 }, 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 = { 5064 }, 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 = { 5064 }, 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 = { 5065 }, 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 = { 3883 }, 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 = { 3883 }, 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 = { 5069 }, 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 = { 5069 }, 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 = { 3949 }, 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 = { 3949 }, 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 = { 3847 }, 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 = { 3847 }, 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 = { 5096 }, level = 75, group = "EnchantmentBladefallAdditionalVolley", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3040033697] = { "Bladefall has an additional Volley" }, } }, + ["EnchantmentBladeTrapRadius1__"] = { affix = "Enchantment Blade Trap Area Of Effect 1", "16% increased Blade Trap Area of Effect", statOrder = { 5091 }, 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 = { 5091 }, 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 = { 5062 }, level = 75, group = "EnchantmentBladeTrapAdditionalRotation", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2388269806] = { "Blade Trap rotates +1 times" }, } }, + ["EnchantmentBladeVortexDuration1"] = { affix = "Enchantment Blade Vortex Duration 1", "20% increased Blade Vortex Duration", statOrder = { 3930 }, 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 = { 3930 }, 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 = { 3846 }, 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 = { 3846 }, 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 = { 5095 }, 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 = { 5095 }, 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 = { 3843 }, 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 = { 3843 }, 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 = { 3997 }, 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 = { 3997 }, 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 = { 5104 }, 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 = { 6359 }, 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 = { 6359 }, 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 = { 3852 }, 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 = { 3852 }, 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 = { 5176 }, 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 = { 5176 }, 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 = { 3872 }, 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 = { 3872 }, 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 = { 3888 }, 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 = { 3888 }, 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 = { 4109 }, 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 = { 4109 }, 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 = { 4110 }, 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 = { 4110 }, 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 = { 5246 }, 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 = { 5246 }, 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 = { 4360 }, 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 = { 3906 }, 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 = { 3906 }, 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 = { 4125 }, 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 = { 4125 }, 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 = { 3961 }, 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 = { 3961 }, 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 = { 3962 }, 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 = { 3962 }, 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 = { 3940 }, 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 = { 3940 }, 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 = { 3837 }, 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 = { 3837 }, 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 = { 3694 }, level = 66, group = "EnchantmentCausticArrowWitherOnHit", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2771005914] = { "" }, [2693477793] = { "Caustic Arrow has 14% chance to inflict Withered on Hit for 0 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 = { 3694 }, level = 75, group = "EnchantmentCausticArrowWitherOnHit", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2771005914] = { "" }, [2693477793] = { "Caustic Arrow has 20% chance to inflict Withered on Hit for 0 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 = { 4105 }, 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 = { 4105 }, 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 = { 3993 }, 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 = { 3993 }, 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 = { 4153 }, 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 = { 4153 }, 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 = { 9677 }, 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 = { 9677 }, 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 = { 3856 }, 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 = { 3856 }, 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 = { 3856 }, 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 = { 3856 }, 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 = { 5763 }, 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 = { 5763 }, 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 = { 5789 }, 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 = { 5789 }, 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 = { 5790 }, 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 = { 5790 }, 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 = { 3857 }, 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 = { 3857 }, 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 = { 3811 }, 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 = { 3811 }, 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 = { 3881 }, 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 = { 3881 }, 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 = { 3838 }, 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 = { 3838 }, 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 = { 4015 }, 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 = { 4015 }, 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 = { 3922 }, 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 = { 3922 }, 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 = { 7180 }, 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 = { 7180 }, 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 = { 3927 }, 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 = { 3927 }, 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 = { 3844 }, 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 = { 3844 }, 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 = { 5865 }, 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 = { 5865 }, 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 = { 5888 }, 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 = { 5888 }, 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 = { 5886 }, 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 = { 3894 }, 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 = { 3894 }, 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 = { 3882 }, 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 = { 3882 }, 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 = { 4028 }, 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 = { 4028 }, 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 = { 5904 }, 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 = { 5904 }, 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 = { 6196 }, 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 = { 6196 }, 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 = { 3867 }, 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 = { 3867 }, 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 = { 10044 }, 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 = { 10044 }, 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 = { 10043 }, 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 = { 10043 }, 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 = { 4001 }, 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 = { 4001 }, 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 = { 3839 }, 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 = { 3839 }, 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 = { 3924 }, 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 = { 3924 }, 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 = { 4126 }, 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 = { 4126 }, 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 = { 6174 }, 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 = { 6174 }, 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 = { 6173 }, 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 = { 6173 }, 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 = { 6177 }, 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 = { 6177 }, 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 = { 6178 }, 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 = { 6178 }, 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 = { 3999 }, 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 = { 3999 }, 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 = { 3834 }, 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 = { 3834 }, 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 = { 6176 }, 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 = { 6176 }, 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 = { 4008 }, 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 = { 4008 }, 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 = { 4002 }, 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 = { 4002 }, 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 = { 6193 }, 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 = { 6193 }, 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 = { 6194 }, 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 = { 6194 }, 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 = { 6258 }, 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 = { 6258 }, 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 = { 6260 }, 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 = { 6260 }, 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 = { 3903 }, 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 = { 3903 }, 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 = { 3706 }, 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 = { 3706 }, 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 = { 3707 }, 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 = { 3707 }, 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 = { 4562 }, 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 = { 4562 }, 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 = { 4563 }, 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 = { 4152 }, 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 = { 4152 }, 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 = { 4154 }, 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 = { 4154 }, 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 = { 6270 }, 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 = { 6270 }, 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 = { 3858 }, 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 = { 3858 }, 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 = { 3941 }, 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 = { 3941 }, 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 = { 6271 }, 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 = { 6271 }, 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 = { 6273 }, 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 = { 6273 }, 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 = { 3859 }, 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 = { 3859 }, 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 = { 3942 }, 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 = { 3942 }, 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 = { 3931 }, 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 = { 3931 }, 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 = { 3849 }, 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 = { 3849 }, 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 = { 6290 }, 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 = { 6290 }, 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 = { 3866 }, 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 = { 3866 }, 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 = { 3983 }, 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 = { 3983 }, 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 = { 4016 }, 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 = { 4016 }, 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 = { 3921 }, 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 = { 3921 }, 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 = { 3892 }, 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 = { 3892 }, 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 = { 3892 }, 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 = { 3892 }, 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 = { 6368 }, 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 = { 10235 }, 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 = { 10235 }, 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 = { 10236 }, 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 = { 10236 }, 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 = { 4017 }, 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 = { 4017 }, 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 = { 3920 }, 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 = { 3920 }, 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 = { 3900 }, 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 = { 3900 }, 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 = { 6479 }, 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 = { 6478 }, 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 = { 3830 }, 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 = { 3830 }, 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 = { 4136 }, 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 = { 4136 }, 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 = { 6525 }, 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 = { 6525 }, 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 = { 6524 }, 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 = { 6524 }, 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 = { 6533 }, 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 = { 6533 }, 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 = { 6529 }, 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 = { 6546 }, 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 = { 6546 }, 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 = { 6547 }, 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 = { 6547 }, 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 = { 3876 }, 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 = { 3876 }, 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 = { 3965 }, 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 = { 3965 }, 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 = { 6558 }, 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 = { 6558 }, 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 = { 6563 }, 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 = { 6563 }, 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 = { 9401 }, 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 = { 9401 }, 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 = { 9400 }, 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 = { 9400 }, 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 = { 3934 }, 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 = { 3934 }, 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 = { 3974 }, 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 = { 3974 }, 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 = { 3964 }, 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 = { 3964 }, 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 = { 3637 }, 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 = { 3637 }, 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 = { 6594 }, 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 = { 6594 }, 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 = { 3945 }, 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 = { 3945 }, 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 = { 3831 }, 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 = { 3831 }, 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 = { 3886 }, 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 = { 3886 }, 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 = { 3990 }, 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 = { 3990 }, 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 = { 4102 }, 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 = { 4102 }, 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 = { 3946 }, 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 = { 3946 }, 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 = { 3975 }, 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 = { 3975 }, 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 = { 6635 }, 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 = { 6635 }, 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 = { 6631 }, 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 = { 6631 }, 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 = { 6633 }, 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 = { 6633 }, 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 = { 6634 }, 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 = { 6634 }, 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 = { 3958 }, 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 = { 3958 }, 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 = { 3901 }, 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 = { 3901 }, 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 = { 6622 }, 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 = { 6622 }, 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 = { 6624 }, 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 = { 6624 }, 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 = { 9528 }, level = 75, group = "EnchantmentFlameWallNumberAllowed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [882630096] = { "+1 to maximum number of Flame Walls" }, } }, + ["EnchantmentFlammabilityCurseEffect1"] = { affix = "Enchantment Flammability Curse Effect 1", "10% increased Flammability Curse Effect", statOrder = { 4018 }, 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 = { 4018 }, 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 = { 3919 }, 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 = { 3919 }, 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 = { 3907 }, 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 = { 3907 }, 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 = { 4127 }, 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 = { 4127 }, 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 = { 4155 }, 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 = { 4155 }, 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 = { 4156 }, 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 = { 4156 }, 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 = { 3908 }, 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 = { 3908 }, 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 = { 10206 }, 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 = { 10206 }, 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 = { 6621 }, 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 = { 6621 }, 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 = { 3880 }, 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 = { 3880 }, 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 = { 3970 }, 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 = { 3970 }, 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 = { 6662 }, 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 = { 6662 }, 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 = { 6661 }, 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 = { 5837 }, 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 = { 5837 }, 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 = { 5836 }, 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 = { 5836 }, 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 = { 3875 }, 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 = { 3875 }, 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 = { 3897 }, 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 = { 3897 }, 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 = { 3982 }, 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 = { 3982 }, 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 = { 3981 }, 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 = { 3981 }, 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 = { 4019 }, 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 = { 4019 }, 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 = { 3918 }, 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 = { 3918 }, 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 = { 3893 }, 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 = { 3893 }, 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 = { 3850 }, 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 = { 3850 }, 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 = { 6681 }, 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 = { 6681 }, 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 = { 6686 }, 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 = { 6687 }, 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 = { 6687 }, 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 = { 3884 }, 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 = { 3884 }, 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 = { 3910 }, 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 = { 3910 }, 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 = { 6862 }, 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 = { 6862 }, 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 = { 6863 }, 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 = { 3984 }, 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 = { 3984 }, 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 = { 3832 }, 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 = { 3832 }, 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 = { 6868 }, 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 = { 6868 }, 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 = { 3966 }, 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 = { 3966 }, 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 = { 3985 }, 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 = { 3985 }, 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 = { 6907 }, 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 = { 6907 }, 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 = { 6908 }, 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 = { 6908 }, 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 = { 3812 }, 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 = { 3812 }, 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 = { 3263 }, 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 = { 3263 }, 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 = { 6942 }, 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 = { 6942 }, 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 = { 6943 }, 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 = { 6943 }, 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 = { 6946 }, 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 = { 6946 }, 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 = { 6947 }, 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 = { 6947 }, 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 = { 3860 }, 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 = { 3860 }, 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 = { 3239 }, 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 = { 3239 }, 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 = { 7113 }, 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 = { 7113 }, 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 = { 7114 }, 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 = { 7114 }, 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 = { 7133 }, 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 = { 7117 }, 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 = { 7117 }, 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 = { 7118 }, 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 = { 7118 }, 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 = { 7121 }, 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 = { 7121 }, 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 = { 7122 }, 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 = { 7122 }, 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 = { 7126 }, 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 = { 7126 }, 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 = { 7127 }, 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 = { 7127 }, 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 = { 5038 }, 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 = { 7131 }, 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 = { 7131 }, 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 = { 7132 }, 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 = { 7132 }, 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 = { 7142 }, 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 = { 7142 }, 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 = { 7141 }, level = 66, group = "EnchantmentHexblastChanceToNotConsume", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [997807729] = { "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 = { 7141 }, level = 75, group = "EnchantmentHexblastChanceToNotConsume", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [997807729] = { "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 = { 7181 }, 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 = { 7181 }, 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 = { 7182 }, 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 = { 7182 }, 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 = { 3986 }, 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 = { 3986 }, 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 = { 3835 }, 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 = { 3835 }, 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 = { 3991 }, 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 = { 3991 }, 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 = { 4103 }, 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 = { 4103 }, 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 = { 3967 }, 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 = { 3967 }, 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 = { 3822 }, 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 = { 3822 }, 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 = { 7194 }, 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 = { 7194 }, 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 = { 3654 }, 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 = { 3654 }, 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 = { 3818 }, 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 = { 3818 }, 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 = { 7196 }, 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 = { 7196 }, 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 = { 7201 }, 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 = { 7201 }, 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 = { 7200 }, 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 = { 7198 }, 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 = { 7198 }, 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 = { 3976 }, 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 = { 3976 }, 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 = { 4128 }, 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 = { 4128 }, 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 = { 7205 }, 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 = { 7204 }, 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 = { 7204 }, 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 = { 3736 }, 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 = { 3736 }, 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 = { 3848 }, 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 = { 3848 }, 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 = { 7206 }, 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 = { 7206 }, 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 = { 7218 }, 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 = { 7218 }, 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 = { 3905 }, 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 = { 3905 }, 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 = { 3672 }, 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 = { 3672 }, 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 = { 3672 }, 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 = { 3672 }, 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 = { 6514 }, 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 = { 6514 }, 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 = { 6513 }, 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 = { 6513 }, 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 = { 4010 }, 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 = { 3963 }, 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 = { 3963 }, 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 = { 3813 }, 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 = { 3813 }, 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 = { 7271 }, 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 = { 7271 }, 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 = { 7273 }, 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 = { 7273 }, 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 = { 5845 }, 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 = { 7304 }, 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 = { 7304 }, 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 = { 7303 }, 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 = { 7303 }, 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 = { 7305 }, 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 = { 7305 }, 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 = { 3836 }, 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 = { 3836 }, 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 = { 4121 }, 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 = { 4121 }, 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 = { 7340 }, 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 = { 7340 }, 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 = { 7337 }, 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 = { 7337 }, 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 = { 7339 }, 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 = { 7339 }, 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 = { 7338 }, 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 = { 3863 }, 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 = { 3863 }, 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 = { 3820 }, 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 = { 3820 }, 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 = { 3821 }, 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 = { 3821 }, 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 = { 4131 }, 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 = { 4131 }, 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 = { 4104 }, 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 = { 4104 }, 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 = { 3992 }, 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 = { 3992 }, 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 = { 3950 }, 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 = { 3950 }, 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 = { 3959 }, 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 = { 3959 }, 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 = { 3814 }, 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 = { 3814 }, 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 = { 4117 }, 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 = { 4117 }, 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 = { 7484 }, 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 = { 7484 }, 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 = { 7483 }, 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 = { 7483 }, 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 = { 7481 }, 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 = { 7481 }, 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 = { 7479 }, 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 = { 3960 }, 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 = { 3960 }, 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 = { 7485 }, 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 = { 7485 }, 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 = { 7486 }, 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 = { 7486 }, 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 = { 3878 }, 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 = { 3878 }, 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 = { 3938 }, 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 = { 3938 }, 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 = { 3956 }, 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 = { 3956 }, 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 = { 3815 }, 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 = { 3815 }, 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 = { 8166 }, 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 = { 8166 }, 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 = { 8167 }, 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 = { 8167 }, 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 = { 8228 }, 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 = { 8228 }, 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 = { 8227 }, 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 = { 8227 }, 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 = { 3871 }, 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 = { 3871 }, 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 = { 3889 }, 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 = { 3889 }, 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 = { 3951 }, 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 = { 3951 }, 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 = { 3817 }, 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 = { 3817 }, 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 = { 4031 }, 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 = { 4031 }, 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 = { 4123 }, 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 = { 4123 }, 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 = { 9618 }, 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 = { 9618 }, 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 = { 9616 }, 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 = { 9616 }, 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 = { 9619 }, 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 = { 9610 }, 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 = { 9610 }, 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 = { 9611 }, 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 = { 9611 }, 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 = { 4011 }, 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 = { 4011 }, 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 = { 3912 }, 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 = { 3912 }, 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 = { 9694 }, 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 = { 9694 }, 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 = { 9693 }, 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 = { 9693 }, 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 = { 3977 }, 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 = { 3977 }, 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 = { 3868 }, 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 = { 3868 }, 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 = { 9701 }, 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 = { 9701 }, 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 = { 9713 }, 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 = { 9713 }, 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 = { 9714 }, 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 = { 9714 }, 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 = { 9702 }, 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 = { 9702 }, 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 = { 9704 }, 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 = { 9704 }, 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 = { 4012 }, 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 = { 4012 }, 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 = { 3913 }, 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 = { 3913 }, 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 = { 9755 }, 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 = { 9755 }, 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 = { 3904 }, 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 = { 3904 }, 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 = { 3971 }, 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 = { 3971 }, 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 = { 4020 }, 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 = { 4020 }, 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 = { 3917 }, 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 = { 3917 }, 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 = { 9956 }, 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 = { 9956 }, 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 = { 9957 }, 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 = { 9957 }, 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 = { 9764 }, 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 = { 9764 }, 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 = { 9765 }, 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 = { 9765 }, 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 = { 9767 }, 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 = { 9767 }, 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 = { 9768 }, 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 = { 9768 }, 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 = { 9770 }, 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 = { 9770 }, 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 = { 9771 }, 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 = { 9771 }, 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 = { 9773 }, 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 = { 9773 }, 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 = { 9774 }, 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 = { 9774 }, 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 = { 3862 }, 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 = { 3862 }, 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 = { 3819 }, 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 = { 3819 }, 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 = { 9808 }, 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 = { 9808 }, 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 = { 9821 }, 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 = { 9821 }, 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 = { 4119 }, 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 = { 4119 }, 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 = { 9823 }, 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 = { 3816 }, 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 = { 3816 }, 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 = { 3885 }, 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 = { 3885 }, 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 = { 4003 }, 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 = { 4003 }, 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 = { 4004 }, 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 = { 4004 }, 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 = { 3827 }, 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 = { 3827 }, 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 = { 4118 }, 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 = { 4118 }, 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 = { 3890 }, 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 = { 3890 }, 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 = { 10533 }, 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 = { 10533 }, 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 = { 10532 }, 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 = { 3979 }, 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 = { 3979 }, 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 = { 4124 }, 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 = { 4124 }, 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 = { 9966 }, 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 = { 9966 }, 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 = { 9967 }, 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 = { 3864 }, 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 = { 3864 }, 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 = { 4094 }, 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 = { 4094 }, 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 = { 3995 }, 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 = { 3995 }, 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 = { 3840 }, 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 = { 3840 }, 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 = { 5788 }, 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 = { 5788 }, 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 = { 5786 }, 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 = { 5786 }, 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 = { 10080 }, 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 = { 10080 }, 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 = { 10079 }, 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 = { 10079 }, 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 = { 10087 }, level = 75, group = "EnchantmentSnipeMaxStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3821882617] = { "+1 to maximum Snipe Stages" }, } }, + ["EnchantmentSnipeAttackSpeed1"] = { affix = "Enchantment Snipe Attack Speed 1", "10% increased Attack Speed with Snipe", statOrder = { 10086 }, 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 = { 10086 }, 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 = { 4959 }, 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 = { 4959 }, 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 = { 10101 }, 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 = { 10101 }, 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 = { 10102 }, 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 = { 10093 }, 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 = { 10093 }, 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 = { 10095 }, 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 = { 10240 }, 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 = { 10240 }, 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 = { 10241 }, 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 = { 10241 }, 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 = { 10246 }, 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 = { 10246 }, 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 = { 10245 }, 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 = { 10245 }, 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 = { 10243 }, 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 = { 10244 }, 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 = { 10244 }, 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 = { 3870 }, 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 = { 3870 }, 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 = { 3853 }, 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 = { 3853 }, 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 = { 3854 }, 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 = { 3854 }, 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 = { 9994 }, 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 = { 9993 }, 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 = { 9995 }, 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 = { 9995 }, 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 = { 4007 }, 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 = { 4007 }, 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 = { 3855 }, 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 = { 3855 }, 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 = { 10027 }, 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 = { 10027 }, 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 = { 10029 }, 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 = { 10029 }, 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 = { 4032 }, 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 = { 4032 }, 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 = { 3842 }, 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 = { 3842 }, 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 = { 10209 }, 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 = { 10209 }, 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 = { 7246 }, 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 = { 7246 }, 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 = { 6857 }, 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 = { 6857 }, 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 = { 3869 }, 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 = { 3869 }, 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 = { 4009 }, 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 = { 4009 }, 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 = { 3928 }, 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 = { 3928 }, 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 = { 3909 }, 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 = { 3909 }, 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 = { 4114 }, 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 = { 4114 }, 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 = { 10091 }, 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 = { 10091 }, 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 = { 3952 }, 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 = { 3952 }, 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 = { 10097 }, 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 = { 3898 }, 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 = { 3898 }, 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 = { 10106 }, 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 = { 10106 }, 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 = { 10105 }, 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 = { 10105 }, 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 = { 3969 }, 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 = { 3969 }, 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 = { 3899 }, 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 = { 3899 }, 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 = { 3874 }, 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 = { 3874 }, 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 = { 3987 }, 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 = { 3987 }, 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 = { 3943 }, 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 = { 3943 }, 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 = { 3953 }, 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 = { 3953 }, 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 = { 3935 }, 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 = { 3935 }, 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 = { 3823 }, 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 = { 3823 }, 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 = { 10222 }, 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 = { 10222 }, 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 = { 3989 }, 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 = { 3989 }, 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 = { 4101 }, 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 = { 4101 }, 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 = { 3936 }, 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 = { 3936 }, 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 = { 3824 }, 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 = { 3824 }, 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 = { 3948 }, 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 = { 3948 }, 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 = { 3851 }, 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 = { 3851 }, 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 = { 10298 }, 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 = { 10298 }, 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 = { 10299 }, 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 = { 10299 }, 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 = { 3825 }, 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 = { 3825 }, 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 = { 3825 }, 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 = { 3825 }, 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 = { 3826 }, 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 = { 3826 }, 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 = { 10359 }, 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 = { 10359 }, 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 = { 10362 }, 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 = { 10362 }, 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 = { 10363 }, level = 66, group = "EnchantmentTectonicSlamSideCrackChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [910992698] = { "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 = { 10363 }, level = 75, group = "EnchantmentTectonicSlamSideCrackChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [910992698] = { "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 = { 4033 }, 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 = { 4033 }, 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 = { 4013 }, 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 = { 4013 }, 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 = { 3914 }, 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 = { 3914 }, 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 = { 10366 }, 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 = { 10366 }, 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 = { 10386 }, 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 = { 10386 }, 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 = { 10384 }, 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 = { 10384 }, 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 = { 3947 }, 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 = { 3947 }, 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 = { 3955 }, level = 66, group = "EnchantmentTornadoShotNumOfSecondaryProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1580810115] = { "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 = { 3955 }, level = 75, group = "EnchantmentTornadoShotNumOfSecondaryProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1580810115] = { "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 = { 10410 }, 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 = { 10410 }, 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 = { 10409 }, 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 = { 10524 }, 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 = { 10524 }, 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 = { 3891 }, 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 = { 3891 }, 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 = { 3911 }, 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 = { 3911 }, 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 = { 3944 }, 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 = { 3944 }, 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 = { 3933 }, 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 = { 3933 }, 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 = { 10534 }, 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 = { 10534 }, 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 = { 10535 }, 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 = { 10535 }, 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 = { 10537 }, 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 = { 10537 }, 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 = { 5081 }, 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 = { 5081 }, 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 = { 5082 }, 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 = { 5082 }, 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 = { 10548 }, 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 = { 10548 }, 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 = { 10547 }, 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 = { 10547 }, 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 = { 4151 }, 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 = { 4151 }, 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 = { 4157 }, 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 = { 4157 }, 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 = { 10550 }, 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 = { 10550 }, 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 = { 6680 }, 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 = { 6680 }, 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 = { 4021 }, 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 = { 4021 }, 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 = { 3916 }, 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 = { 3916 }, 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 = { 7185 }, level = 66, group = "EnchantmentWaterSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [222917854] = { "Hydrosphere has 20% increased Pulse Frequency" }, } }, + ["EnchantmentWaterSpherePulseFrequency2__"] = { affix = "Enchantment Hydrosphere Pulse Frequency 2", "Hydrosphere has 30% increased Pulse Frequency", statOrder = { 7185 }, level = 75, group = "EnchantmentWaterSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [222917854] = { "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 = { 10583 }, 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 = { 10583 }, 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 = { 10556 }, 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 = { 10556 }, 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 = { 4022 }, 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 = { 4022 }, 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 = { 3915 }, 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 = { 3915 }, 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 = { 9759 }, 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 = { 9759 }, 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 = { 9762 }, 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 = { 9762 }, 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 = { 3873 }, 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 = { 3873 }, 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 = { 4005 }, 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 = { 4005 }, 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 = { 3833 }, 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 = { 3833 }, 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 = { 6683 }, 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 = { 6684 }, 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 = { 6684 }, 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 = { 3929 }, 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 = { 3929 }, 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 = { 3845 }, 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 = { 3845 }, 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 = { 10628 }, 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 = { 10628 }, 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 = { 10629 }, 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 = { 10629 }, 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 = { 3861 }, 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 = { 3861 }, 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 = { 3988 }, 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 = { 3988 }, 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 = { 10721 }, 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 = { 10721 }, 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 = { 10722 }, 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 = { 10722 }, 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 = { 10541 }, 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 = { 10541 }, 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 = { 10539 }, 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 = { 10542 }, 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 = { 10542 }, 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 = { 10540 }, 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 = { 10540 }, 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 = { 10489 }, 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 = { 10489 }, 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 = { 5258 }, 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 = { 5258 }, 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 = { 5257 }, 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 = { 5257 }, 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 = { 5878 }, 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 = { 5880 }, 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 = { 5880 }, 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 = { 5879 }, 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 = { 5879 }, 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 = { 5882 }, 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 = { 5882 }, 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 = { 5881 }, 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 = { 5881 }, 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 = { 9778 }, 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 = { 9778 }, 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 = { 10231 }, 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 = { 10231 }, 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 = { 9777 }, 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 = { 9777 }, 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 = { 9776 }, 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 = { 9776 }, 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 = { 5099 }, level = 75, group = "EnchantmentBladestormMaximumNumberOfStormsAllowed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1769497634] = { "+1 to Maximum number of Bladestorms at a time" }, } }, + ["EnchantmentBladestormSandstormMovementSpeed1"] = { affix = "Enchantment Bladestorm Sandstorm Speed 1", "Sand Bladestorms move with 50% increased speed", statOrder = { 5100 }, 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 = { 5100 }, 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 = { 5098 }, 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 = { 5098 }, 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 = { 5241 }, 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 = { 5241 }, 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 = { 5243 }, level = 66, group = "EnchantmentPerforateNumberOfSpears", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [760606760] = { "Perforate creates +1 Spike" }, } }, + ["EnchantmentPerforateNumberOfSpears2"] = { affix = "Enchantment Perforate Number Of Spikes 2", "Perforate creates +2 Spikes", statOrder = { 5243 }, level = 75, group = "EnchantmentPerforateNumberOfSpears", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [760606760] = { "Perforate creates +2 Spikes" }, } }, + ["EnchantmentPerforateAreaOfEffect1"] = { affix = "Enchantment Perforate Area Of Effect 1", "Perforate has 16% increased Area of Effect", statOrder = { 5242 }, 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 = { 5242 }, 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 = { 5244 }, 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 = { 5244 }, 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 = { 7191 }, 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 = { 7191 }, 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 = { 7193 }, 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 = { 7193 }, 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 = { 6654 }, 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 = { 6654 }, 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 = { 6655 }, 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 = { 6655 }, 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 = { 5490 }, 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 = { 5490 }, 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 = { 5488 }, 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 = { 5489 }, 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 = { 5489 }, 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 = { 5074 }, 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 = { 5074 }, 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 = { 5073 }, 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 = { 5073 }, 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 = { 7461 }, 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 = { 7461 }, 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 = { 7462 }, 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 = { 7462 }, 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 = { 7460 }, 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 = { 7460 }, 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 = { 5835 }, 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 = { 5835 }, 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 = { 5837 }, 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 = { 5837 }, 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 = { 5834 }, 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 = { 5834 }, 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 = { 9399 }, 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 = { 9399 }, 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 = { 9402 }, 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 = { 9402 }, 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 = { 9400 }, 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 = { 9400 }, 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 = { 5798 }, 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 = { 5798 }, 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 = { 5800 }, 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 = { 5800 }, 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 = { 5799 }, 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 = { 5799 }, 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 = { 10078 }, level = 66, group = "EnchantmentWitheringStepWitherStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2273926362] = { "Withering Step inflicts 2 additional Withered Debuffs" }, } }, + ["EnchantmentWitheringStepWitherStacks2_"] = { affix = "Enchantment Withering Step Wither Stacks 2", "Withering Step inflicts 3 additional Withered Debuffs", statOrder = { 10078 }, level = 75, group = "EnchantmentWitheringStepWitherStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2273926362] = { "Withering Step inflicts 3 additional Withered Debuffs" }, } }, + ["EnchantmentWitheringStepElusiveEffect1"] = { affix = "Enchantment Withering Step Elusive Effect 1", "Withering Step has 20% increased Elusive Effect", statOrder = { 10077 }, 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 = { 10077 }, 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 = { 10083 }, 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 = { 10083 }, 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 = { 10085 }, 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 = { 10085 }, 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 = { 10084 }, 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 = { 10084 }, 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 = { 5885 }, 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 = { 5885 }, 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 = { 5884 }, level = 66, group = "EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3672666316] = { "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 = { 5884 }, level = 75, group = "EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3672666316] = { "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 = { 8169 }, 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 = { 8169 }, 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 = { 8170 }, 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 = { 8170 }, 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 = { 8168 }, 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 = { 8168 }, 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 = { 5255 }, 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 = { 5255 }, 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 = { 5002 }, 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 = { 5002 }, 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 = { 5256 }, 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 = { 5256 }, 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 = { 10301 }, 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 = { 10301 }, 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 = { 10071 }, 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 = { 10071 }, 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 = { 10072 }, 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 = { 10072 }, 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 = { 4790 }, 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 = { 4790 }, 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 = { 4791 }, 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 = { 4791 }, 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 = { 4789 }, 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 = { 10022 }, 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 = { 10023 }, 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 = { 10023 }, 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 = { 10024 }, 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 = { 10024 }, 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 = { 7321 }, 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 = { 7321 }, 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 = { 7324 }, 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 = { 7324 }, 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 = { 7325 }, 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 = { 7325 }, 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 = { 5088 }, 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 = { 5088 }, 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 = { 5089 }, 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 = { 5089 }, 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 = { 5087 }, 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 = { 5087 }, 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 = { 10250 }, 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 = { 10250 }, 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 = { 10251 }, 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 = { 10251 }, 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 = { 9946 }, level = 66, group = "EnchantmentRuneBlastTeleport1000", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4059221381] = { "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 = { 9947 }, 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 = { 10197 }, 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 = { 10197 }, 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 = { 10198 }, 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 = { 10198 }, 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 = { 10196 }, 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 = { 10196 }, 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 = { 10618 }, 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 = { 10618 }, 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 = { 10619 }, 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 = { 10619 }, 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 = { 10617 }, 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 = { 10617 }, 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 = { 9591 }, 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 = { 9591 }, 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 = { 9590 }, 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 = { 9590 }, 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 = { 9589 }, 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 = { 9589 }, 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 = { 6292 }, 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 = { 6292 }, 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 = { 6291 }, 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 = { 6291 }, 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 = { 10204 }, level = 75, group = "EnchantmentEarthshatterSpikes", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1020575720] = { "Earthshatter creates +1 fissures" }, } }, + ["EnchantmentArcanistBrandCastSpeed1"] = { affix = "Enchantment Arcanist Brand Cast Speed 1", "Arcanist Brand has 8% increased Cast Speed", statOrder = { 4715 }, 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 = { 4715 }, 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 = { 4716 }, 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 = { 6164 }, 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 = { 6164 }, 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 = { 10248 }, 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 = { 10248 }, 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 = { 9720 }, 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 = { 9720 }, 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 = { 10249 }, 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 = { 9799 }, 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 = { 9799 }, 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 = { 9798 }, 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 = { 9798 }, 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 = { 9797 }, level = 66, group = "EnchantmentRageVortexSacrificeMoreRage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3571360137] = { "Rage Vortex Sacrifices +3% of Rage" }, } }, + ["EnchantmentRageVortexSacrificeMoreRage2"] = { affix = "Enchantment Rage Vortex Rage Sacrificed 2", "Rage Vortex Sacrifices +5% of Rage", statOrder = { 9797 }, level = 75, group = "EnchantmentRageVortexSacrificeMoreRage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3571360137] = { "Rage Vortex Sacrifices +5% of Rage" }, } }, + ["EnchantmentShieldCrushDamage1_"] = { affix = "Enchantment Shield Crush Damage 1", "25% increased Shield Crush Damage", statOrder = { 10000 }, 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 = { 10000 }, 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 = { 9999 }, 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 = { 9999 }, 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 = { 10001 }, 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 = { 10001 }, 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 = { 10306 }, 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 = { 10306 }, 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 = { 10307 }, 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 = { 10307 }, 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 = { 10297 }, 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 = { 10297 }, 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 = { 5260 }, 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 = { 5260 }, 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 = { 5261 }, 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 = { 5261 }, 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 = { 5259 }, 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 = { 5259 }, 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 = { 4666 }, 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 = { 4666 }, 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 = { 4665 }, 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 = { 4665 }, 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 = { 6860 }, 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 = { 6860 }, 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 = { 6859 }, 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 = { 6859 }, 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 = { 6861 }, 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 = { 7447 }, 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 = { 7447 }, 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 = { 7446 }, 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 = { 7446 }, 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 = { 7445 }, 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 = { 7445 }, 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 = { 4625 }, 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 = { 4625 }, 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 = { 10543 }, 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 = { 10543 }, 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 = { 10544 }, 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 = { 10544 }, 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 = { 10545 }, 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 = { 10545 }, 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 = { 6696 }, 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 = { 6696 }, 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 = { 6693 }, 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 = { 6693 }, 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 = { 6691 }, 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 = { 6691 }, 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 = { 6470 }, 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 = { 6470 }, 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 = { 6469 }, 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 = { 6469 }, 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 = { 3961 }, 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 = { 3961 }, 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 = { 6522 }, 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 = { 6522 }, 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 = { 6522 }, 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 = { 6522 }, 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 = { 4744 }, 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 = { 4772 }, 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 = { 9863 }, 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 = { 6495 }, 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 = { 4946 }, 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 = { 6001 }, 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 = { 4524 }, 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 = { 6415 }, 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 = { 6414 }, 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 = { 6419 }, 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 = { 5072 }, 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 = { 6421 }, 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 = { 6409 }, 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 = { 6418 }, 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 = { 6420 }, 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/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 381b3186bf..7ac7f6bba5 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -304,6 +304,10 @@ end) writeMods("../Data/ModFoulborn.lua", function(mod) return mod.Domain == Domains.Item 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 local out = io.open("Uniques/ModTextMap.lua", "w") From 5e4bf21980663dc981fe989e310891ecbb168af4 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 15:44:56 +0300 Subject: [PATCH 04/11] Rename implicit -> intrinsic. The file contains both explicit unique mods, and implicit mods that only spawn on some bases. Implicit is very misleading. --- src/Data/{ModImplicit.lua => ModIntrinsic.lua} | 0 src/Modules/Data.lua | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) rename src/Data/{ModImplicit.lua => ModIntrinsic.lua} (100%) diff --git a/src/Data/ModImplicit.lua b/src/Data/ModIntrinsic.lua similarity index 100% rename from src/Data/ModImplicit.lua rename to src/Data/ModIntrinsic.lua diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index a880019c7f..0521b1f37c 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 + Intrinsic = LoadModule("Data/ModIntrinsic"), Corrupted = LoadModule("Data/ModCorrupted"), Delve = LoadModule("Data/ModDelve"), Synthesis = LoadModule("Data/ModSynthesis"), @@ -587,6 +588,7 @@ data.itemMods = { JewelAbyss = LoadModule("Data/ModJewelAbyss"), JewelCluster = LoadModule("Data/ModJewelCluster"), JewelCharm = LoadModule("Data/ModJewelCharm"), + Enchantment = LoadModule("Data/ModEnchantment") } data.masterMods = LoadModule("Data/ModMaster") data.enchantments = { From 51baaae81335827eaa49fdd451d00b25024f5a0c Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 20:06:39 +0300 Subject: [PATCH 05/11] Fix comparison "buy similar" mod matching: - add ids to cluster jewel types (trade site uses these for the dropdown) - combine comparison trade and droptimizer trade utility to TradeHelpers.lua - export foulborn jewel mods - remove ModImplicit.lua. It was misleading and equal to ModItemExlclusive.lua - export "adds # passive skills" mod. GGG stat values incorrectly say 0-0 which hid it. --- src/Classes/CompareBuySimilar.lua | 87 +- src/Classes/CompareTab.lua | 3 +- ...mpareTradeHelpers.lua => TradeHelpers.lua} | 228 +- src/Classes/TradeQueryGenerator.lua | 31 +- src/Data/ClusterJewels.lua | 657 +- src/Data/ModFoulborn.lua | 22 + src/Data/ModIntrinsic.lua | 8251 ----------------- src/Data/ModItemExclusive.lua | 1 + src/Export/Scripts/cluster.lua | 11 + src/Export/Scripts/mods.lua | 17 +- src/Export/Uniques/ModTextMap.lua | 2 + src/Modules/Data.lua | 8 +- 12 files changed, 641 insertions(+), 8677 deletions(-) rename src/Classes/{CompareTradeHelpers.lua => TradeHelpers.lua} (70%) delete mode 100644 src/Data/ModIntrinsic.lua diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index d54aa68265..909296787a 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -6,7 +6,7 @@ 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 M = {} @@ -138,24 +138,30 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is 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 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 + if entry.valueIsOption then + filter.value = { option = entry.value } + elseif entry.value then + local minVal = tonumber(controls[prefix .. "Min"].buf) + local maxVal = tonumber(controls[prefix .. "Max"].buf) + local value = {} + if minVal then + value.min = minVal + end + if maxVal then + value.max = maxVal + end + if entry.invert then + value.min, value.max = value.max, value.min + value.min = value.min and -value.min + value.max = value.max and -value.max + end + if next(value) then + filter.value = value + end end + t_insert(queryTable.query.stats[1].filters, filter) end end @@ -213,14 +219,37 @@ function M.openPopup(item, slotName, primaryBuild) 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 tradeHash = tradeHelpers.findTradeHash(item, resolvedLine, source.type, modLine.desecrated) - local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) - local value = tradeHelpers.modLineValue(resolvedLine) + + -- special case: cluster enchantment + local identifier, value + -- whether to add a min and max, or an option field + local valueIsOption = false + local clusterMatch = resolvedLine:match("Added Small Passive Skills grant: (.+)") + if clusterMatch then + identifier = "enchant.stat_3948993189" + for _, v in pairs(item.clusterJewel.skills) do + for _, stat in ipairs(v.stats) do + if stat == clusterMatch then + value = v.id + valueIsOption = true + goto outer + end + end + end + ::outer:: + else + local tradeHash = tradeHelpers.findTradeHash(item, resolvedLine, source.type) + identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) + value = tradeHelpers.modLineValue(resolvedLine) + end + + t_insert(modEntries, { line = modLine.line, formatted = formatted:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", ""), -- strip color codes tradeId = identifier, value = value, + valueIsOption = valueIsOption, modType = source.type, invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) }) @@ -365,15 +394,19 @@ function M.openPopup(item, slotName, primaryBuild) 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) .. "..." + if #displayText > 65 then + displayText = displayText:sub(1, 55) .. "..." 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 + -- when the trade site has a dropdown for the value, we opt to disable + -- the inputs as they are numeric + if not entry.valueIsOption and entry.value then + 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 + end end ctrlY = ctrlY + rowHeight end diff --git a/src/Classes/CompareTab.lua b/src/Classes/CompareTab.lua index c3e54b1478..8355c0a97e 100644 --- a/src/Classes/CompareTab.lua +++ b/src/Classes/CompareTab.lua @@ -9,8 +9,7 @@ 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") diff --git a/src/Classes/CompareTradeHelpers.lua b/src/Classes/TradeHelpers.lua similarity index 70% rename from src/Classes/CompareTradeHelpers.lua rename to src/Classes/TradeHelpers.lua index c18b99e058..f435f1637a 100644 --- a/src/Classes/CompareTradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -9,28 +9,33 @@ local dkjson = require "dkjson" 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 +--- @param line string function M.modLineValue(line) - return tonumber(line:match("[%d]+%.?[%d]*")) or 0 + return tonumber(line:match("%-?[%d]+%.?[%d]*")) end -- Helper: fetch and cache the trade API stats local _tradeStats = nil local _tradeStatsFetched = false +--- @return table local function getTradeStatsLookup() if _tradeStats then return _tradeStats end local tradeStats = "" @@ -57,28 +62,67 @@ M.sourceTypeToCategory = { ["enchant"] = "Enchant", } +-- 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 + return modLine, inverseKey +end + +-- checks if the mod should be inverted before query +--- @param tradeId string +--- @param modLine string +--- @param modType string function M.shouldBeInverted(tradeId, modLine, modType) local formattedLine = M.formatDatabaseText(M.formatDatabaseText(modLine)) + local invertedLine, inverseKey = M.swapInverse(formattedLine) for _, category in ipairs(getTradeStatsLookup()) do if category.id == modType then for _, stat in ipairs(category.entries) do if tradeId == stat.id then -- remove radius jewel extra text local formattedTradeSiteText = M.formatDatabaseText(stat.text) - -- local modifiers don't seem to be inverted. same goes for - -- the single stat that has (charm) in it - if formattedTradeSiteText:match("(Local)") or formattedTradeSiteText:match(" %(Charm%)$") then + -- there are multiple stat variants on the trade site which are marked with e.g. (Local). None of these seem to be inverted, so we can check for those and return early + if formattedTradeSiteText:match(" %(%w+%)$") then return false end - -- trade site sometimes has a + sign, sometimes not - return not (formattedLine == formattedTradeSiteText or formattedLine:gsub("^%+", "") == formattedTradeSiteText) + + -- test for inverted mod + if inverseKey and ((invertedLine == formattedTradeSiteText) or (invertedLine:gsub("^%+", "") == formattedTradeSiteText)) then + return true + end + + -- otherwise it's probably not inverted + return false end end end end + return false end -- Helper: normalise data texts to # format +--- @param text string function M.formatDatabaseText(text) -- decimal -> integer text = text:gsub("%d+%.%d+", "1") @@ -93,29 +137,67 @@ function M.formatDatabaseText(text) end -- Helper: find the trade stat ID for a mod line -function M.findTradeHash(item, modLine, modType, isVeiled) +--- @param item table +--- @param modLine string +--- @param modType string +--- @return number? +function M.findTradeHash(item, modLine, modType) local formattedLine = M.formatDatabaseText(modLine) -- the data export splits some mods into different parts, even though they -- are technically just one stat. we handle that here - function findStat(dbMod, allowDefault) - local excludeTags = (not allowDefault) and { default = true } or nil - if #dbMod.weightKey > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then + + local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" + function findStat(dbMod, ignoreWeights) + local excludeTags = (not isUnique) and { default = true } or nil + -- cluster jewel mod weights are weird + local isMatchingClusterMod = dbMod.group and dbMod.group:match("^Affliction") and + item.base.subType == "Cluster" + if not (isMatchingClusterMod or ignoreWeights) and #(dbMod.weightKey or {}) > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then return nil end for tradeHash, description in pairs(dbMod.tradeHashes) do - for _, line in ipairs(description) do - local dbFormatted = M.formatDatabaseText(line) - if formattedLine == dbFormatted then + local tradeLine = table.concat(description, "\n") + if tradeLine:match("increased Critical Strike Chance against Shocked Enemies") then + ConPrintf("help") + end + if formattedLine == M.formatDatabaseText(tradeLine) then + return tradeHash + end + + -- the mod line splitting between the stat export and item parsing + -- can be different. hence we test both a combined line and separate + -- lines + for _, descLine in ipairs(description) do + if formattedLine == M.formatDatabaseText(descLine) then return tradeHash end end + + + end + end + + if item.foulborn then + for _, dbMod in pairs(data.itemMods.Foulborn) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end + + if item.name:match("Watcher's Eye") or item.name:match("Sublime Vision") then + for _, dbMod in pairs(data.itemMods.WatchersEye) do + local tradeHashMaybe = findStat(dbMod, true) + if tradeHashMaybe then + return tradeHashMaybe + end end end - -- implicit mods if modType == "implicit" then - for _, dbName in ipairs({"Implicit", "Synthesis", "Eldritch"}) do - for _, dbMod in pairs(data.itemMods[dbName]) do + for _, db in ipairs({"Synthesis", "Eldritch", "ItemExclusive", "Delve", "Corrupted", }) do + for _, dbMod in pairs(data.itemMods[db]) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then return tradeHashMaybe @@ -124,40 +206,72 @@ function M.findTradeHash(item, modLine, modType, isVeiled) end end - --enchantments TODO - - -- scourge mods - if modType == "scourge" then + if modType == "explicit" then + -- this should include most things the base type can contain + if item.base.type == "Jewel" or item.base.type == "Flask" then + for modName, dbMod in pairs(item.affixes) do + if (item.searing or item.tangled) or not modName:match("EldritchImplicit") then + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end + for _, dbMod in pairs(data.itemMods.ItemExclusive) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + else + for _, db in ipairs({ "Explicit", "Delve", "Scourge", "ItemExclusive" }) do + for _, dbMod in pairs(data.itemMods[db]) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end + -- unveiled mods + for _, dbMod in pairs(data.veiledMods) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end + elseif modType == "scourge" then for _, dbMod in pairs(data.itemMods.Scourge) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then return tradeHashMaybe end end - end - - -- crucible mods - -- TODO: add trade hash to these - if modType == "crucible" then - for _, dbMod in pairs(data.crucible) do + --enchantments + elseif modType == "enchant" then + for _, dbMod in pairs(data.itemMods.Enchantment) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then return tradeHashMaybe end end - end - - -- veiled mods - - for _, dbMod in pairs(data.veiledMods) do - local tradeHashMaybe = findStat(dbMod) - if tradeHashMaybe then - return tradeHashMaybe + -- some enchant mods aren't actually marked as enchants in the data + -- files + for _, dbMod in pairs(item.affixes) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end end - end - -- rest of the explicit mods - for _, dbName in ipairs({ "Delve", "Explicit" }) do - for _, dbMod in pairs(data.itemMods[dbName]) do + for _, dbMod in pairs(data.itemMods.ItemExclusive) do + local tradeHashMaybe = findStat(dbMod) + if tradeHashMaybe then + return tradeHashMaybe + end + end + -- crucible mods + elseif modType == "crucible" then + for _, dbMod in pairs(data.crucible) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then return tradeHashMaybe @@ -165,28 +279,27 @@ function M.findTradeHash(item, modLine, modType, isVeiled) end end - for _, dbMod in pairs(data.itemMods.Scourge) do - local tradeHashMaybe = findStat(dbMod) + -- if we still don't have a match, there's probably an issue with weight + -- keys. some mods, such as incursion mods, have a weight value of zero for + -- "default". this might produce false positives + for _, dbMod in pairs(data.itemMods.ItemExclusive) do + local tradeHashMaybe = findStat(dbMod, true) if tradeHashMaybe then return tradeHashMaybe end end - - -- implicit mods - if modType == "explicit" then - for _, dbMod in pairs(data.itemMods.Implicit) do - local tradeHashMaybe = findStat(dbMod) - if tradeHashMaybe then - return tradeHashMaybe - end + for _, dbMod in pairs(item.affixes) do + local tradeHashMaybe = findStat(dbMod, true) + if tradeHashMaybe then + return tradeHashMaybe end end - - -- TODO flask, graft, jewels 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) +--- @param slotName string +--- @param item table function M.getTradeCategoryInfo(slotName, item) if not slotName then return nil, nil end local itemType = item and (item.type or (item.base and item.base.type)) @@ -225,6 +338,7 @@ function M.getTradeCategoryInfo(slotName, item) end -- Helper: map slot name + item type to trade API category string +--- @param item table function M.getTradeCategory(slotName, item) if not item or not item.base then return nil end local queryStr = M.getTradeCategoryInfo(slotName, item) @@ -232,6 +346,7 @@ function M.getTradeCategory(slotName, item) 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 @@ -240,6 +355,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 @@ -258,6 +374,8 @@ function M.buildModMap(item) end -- Helper: get diff label string for an item slot comparison +--- @param pIem table +--- @param cItem table function M.getSlotDiffLabel(pItem, cItem) if not pItem and not cItem then return "^8(both empty)" diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index eeb2fdeaab..5087176db7 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 = { @@ -242,30 +242,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 +275,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 +289,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 diff --git a/src/Data/ClusterJewels.lua b/src/Data/ClusterJewels.lua index 6bdbda9091..04055a2778 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/ModFoulborn.lua b/src/Data/ModFoulborn.lua index d77502abbf..0eba913564 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 = { 4634 }, 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 = { 209 }, 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 = { 4634 }, 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 = { 8078, 8078.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsMaximumLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [4068640319] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel85ChaosResistancePerEnduranceCharge"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5744 }, 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 = { 8053, 8053.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsMaximumManaPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "cold" }, tradeHashes = { [3802517517] = { "" }, [1535088208] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value" }, } }, + ["MutatedUniqueJewel87MovementSpeedPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, 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 = { 8094, 8094.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsMaximumESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [3802517517] = { "" }, [1348513056] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value" }, } }, + ["MutatedUniqueJewel89CriticalMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, 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 = { 8077, 8077.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "chaos" }, tradeHashes = { [1124207360] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel86ExtraDamageRollsWithFireIfBlockedAttackRecently"] = { affix = "", "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", statOrder = { 6538 }, 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 = { 8051, 8051.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "chaos" }, tradeHashes = { [248241207] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel88ExtraDamageRollsWithColdIfSuppressedRecently"] = { affix = "", "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", statOrder = { 6537 }, 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 = { 8093, 8093.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "chaos" }, tradeHashes = { [1525329150] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel90ExtraDamageRollsWithLightningIfBlockedSpellRecently"] = { affix = "", "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", statOrder = { 6539 }, 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 = { 411 }, 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 = { 3572 }, 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 = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, @@ -119,6 +131,16 @@ return { ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1437 }, 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 = { 1148 }, 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 = { 9752 }, 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 = { 1864 }, 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 = { 1256 }, 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 = { 3311 }, 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 = { 6005 }, 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 = { 10007 }, 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 = { 1862 }, 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 = { 1146 }, 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 = { 1148 }, 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 = { 8104, 8105 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "75% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel112Small"] = { affix = "", "100% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8104, 8105 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "100% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10784 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7343 }, 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 = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, diff --git a/src/Data/ModIntrinsic.lua b/src/Data/ModIntrinsic.lua deleted file mode 100644 index 0433a5f49d..0000000000 --- a/src/Data/ModIntrinsic.lua +++ /dev/null @@ -1,8251 +0,0 @@ --- This file is automatically generated, do not edit! --- Item data (c) Grinding Gear Games - -return { - ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1182 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-35) to Strength" }, } }, - ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-30) to Strength" }, } }, - ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-60) to Strength" }, } }, - ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1182 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+50 to Strength" }, } }, - ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, - ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-55) to Strength" }, } }, - ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(50-70) to Strength" }, } }, - ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, - ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+200 to Strength" }, } }, - ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(60-120) to Strength" }, } }, - ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-50) to Strength" }, } }, - ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1182 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-35) to Strength" }, } }, - ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-18)% increased Strength" }, } }, - ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "100% reduced Strength" }, } }, - ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% reduced Strength" }, } }, - ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-12)% increased Strength" }, } }, - ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-30) to Dexterity" }, } }, - ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-60) to Dexterity" }, } }, - ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-65) to Dexterity" }, } }, - ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+15 to Dexterity" }, } }, - ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-70) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-55) to Dexterity" }, } }, - ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(35-45) to Dexterity" }, } }, - ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+30 to Dexterity" }, } }, - ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, - ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+25 to Dexterity" }, } }, - ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-80) to Dexterity" }, } }, - ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-50) to Dexterity" }, } }, - ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-55) to Dexterity" }, } }, - ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-10) to Dexterity" }, } }, - ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(25-40) to Strength and Dexterity" }, } }, - ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "100% reduced Dexterity" }, } }, - ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-12)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-15)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-30) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, - ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-60) to Intelligence" }, } }, - ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-75) to Intelligence" }, } }, - ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-80) to Intelligence" }, } }, - ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(80-120) to Intelligence" }, } }, - ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+40 to Intelligence" }, } }, - ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+20 to Intelligence" }, } }, - ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-70) to Intelligence" }, } }, - ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1184 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "-(25-15) to Intelligence" }, } }, - ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-32) to Intelligence" }, } }, - ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, - ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(14-18)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "100% reduced Intelligence" }, } }, - ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-12)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(1-7)% increased Intelligence" }, } }, - ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1181 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-16) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(80-100) to all Attributes" }, } }, - ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-40) to all Attributes" }, } }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-30) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-25) to all Attributes" }, } }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, - ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(40-50) to all Attributes" }, } }, - ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-50) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1181 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(30-50) to all Attributes" }, } }, - ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-75) to all Attributes" }, } }, - ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-24) to all Attributes" }, } }, - ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1181 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-30) to all Attributes" }, } }, - ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } }, - ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1181 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1574 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1000 to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-180) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+20 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-20 to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1574 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+15 to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+10 to maximum Life" }, } }, - ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-15) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-200) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1574 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-60) to maximum Life" }, } }, - ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1574 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-85) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1574 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, - ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(65-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(240-300) to maximum Life" }, } }, - ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__60"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1574 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+23 to maximum Life" }, } }, - ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-175) to maximum Life" }, } }, - ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, - ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-65) to maximum Life" }, } }, - ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(-200-200) to maximum Life" }, } }, - ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(1-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-75) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+20 to maximum Mana" }, } }, - ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+100 to maximum Mana" }, } }, - ["IncreasedManaUniqueWand3"] = { affix = "", "+(40-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-55) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } }, - ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing29"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+70 to maximum Mana" }, } }, - ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, } }, - ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-75) to maximum Mana" }, } }, - ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+500 to maximum Mana" }, } }, - ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-160) to maximum Mana" }, } }, - ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-70) to maximum Mana" }, } }, - ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1563 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1563 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(200-300) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+50 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+15 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1563 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1563 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(70-150) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(75-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+250 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-45) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-35) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1564 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(110-130) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-45) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+40 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-160) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-110) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(64-96) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(180-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(160-180) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1271 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (10-14) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1271 }, level = 7, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1New"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1271 }, level = 5, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6New"] = { affix = "", "Adds (7-9) to (13-16) Physical Damage to Attacks", statOrder = { 1271 }, level = 39, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver12New"] = { affix = "", "Adds (12-15) to (24-27) Physical Damage to Attacks", statOrder = { 1271 }, level = 77, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-27) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6_"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 7, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiverDescent"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver11"] = { affix = "", "6 to 12 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 35, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 12 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueBelt4"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyStr2"] = { affix = "", "Adds 2 to 4 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 2 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyDex2"] = { affix = "", "Your Attacks deal -3 Physical Damage", statOrder = { 2471 }, level = 1, group = "DewathsHidePhysicalDamageDealt", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1454654776] = { "Your Attacks deal -3 Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueBodyDex4"] = { affix = "", "Adds 5 to 12 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStr3"] = { affix = "", "Adds 40 to 60 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 40 to 60 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing8"] = { affix = "", "Adds 5 to 9 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 9 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Adds 20 to 30 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 20 to 30 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver3"] = { affix = "", "(10-14) to (19-24) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(10-14) to (19-24) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver8"] = { affix = "", "6 to 10 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 10 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver9"] = { affix = "", "(8-10) to (14-16) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(8-10) to (14-16) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldStrDex3"] = { affix = "", "Adds 4 to 8 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 4 to 8 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing37"] = { affix = "", "Adds (5-10) to (11-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-10) to (11-15) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBootsStr3"] = { affix = "", "Adds (2-5) to (7-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-5) to (7-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique___1"] = { affix = "", "Adds 5 to 10 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 10 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueAmulet25"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__2"] = { affix = "", "Adds (5-15) to (25-50) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-15) to (25-50) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__3"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__4"] = { affix = "", "Adds 1 to (15-20) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__5"] = { affix = "", "Adds (5-8) to (12-16) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-8) to (12-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (4-10) to (14-36) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-10) to (14-36) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__8"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__9_"] = { affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__10"] = { affix = "", "Adds (13-18) to (26-32) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (13-18) to (26-32) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__11__"] = { affix = "", "Adds (2-3) to (22-26) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (22-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__12"] = { affix = "", "Adds (8-12) to (18-24) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (18-24) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__13"] = { affix = "", "Adds (6-10) to (16-22) Physical Damage to Attacks", statOrder = { 1271 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (16-22) Physical Damage to Attacks" }, } }, - ["LocalAddedPhysicalDamageUnique__1"] = { affix = "", "Adds (15-20) to (30-40) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre9"] = { affix = "", "Adds (8-13) to (26-31) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (26-31) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe3"] = { affix = "", "Adds 5 to 10 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueRapier2"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "Adds 2 to 10 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace6"] = { affix = "", "Adds (43-56) to (330-400) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (43-56) to (330-400) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace7"] = { affix = "", "Adds 5 to 25 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 25 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword5"] = { affix = "", "Adds (60-70) to (71-80) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-70) to (71-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe3"] = { affix = "", "Adds (10-15) to (25-30) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe7"] = { affix = "", "Adds (310-330) to (370-390) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (310-330) to (370-390) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueStaff7"] = { affix = "", "Adds (135-145) to (160-175) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (135-145) to (160-175) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentClaw1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe5"] = { affix = "", "Adds (11-14) to (18-23) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (18-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow7"] = { affix = "", "Adds (25-35) to (36-45) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (36-45) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow5"] = { affix = "", "Adds (15-20) to (25-30) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandSword8"] = { affix = "", "Adds (65-75) to (100-110) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-75) to (100-110) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "Adds (5-10) to (15-23) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (15-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre10"] = { affix = "", "Adds (35-46) to (85-128) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-46) to (85-128) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "Adds (5-10) to (13-20) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (13-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueWand9"] = { affix = "", "Adds (5-8) to (13-17) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6"] = { affix = "", "Adds (60-80) to (150-180) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-80) to (150-180) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7"] = { affix = "", "Adds (50-70) to (135-165) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (50-70) to (135-165) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__8"] = { affix = "", "Adds (35-40) to (55-60) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-40) to (55-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__9"] = { affix = "", "Adds (24-30) to (34-40) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (24-30) to (34-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__10"] = { affix = "", "Adds (5-8) to (15-20) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (15-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__11"] = { affix = "", "Adds (30-38) to (40-50) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-38) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__12"] = { affix = "", "Adds (30-45) to (80-100) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-45) to (80-100) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__13"] = { affix = "", "Adds (25-35) to (50-65) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (50-65) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__14"] = { affix = "", "Adds (40-50) to (130-150) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-50) to (130-150) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__15"] = { affix = "", "Adds (90-115) to (230-260) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-115) to (230-260) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__16_"] = { affix = "", "Adds (10-16) to (45-60) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (45-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__17_"] = { affix = "", "Adds (6-12) to (20-25) Physical Damage", statOrder = { 1281 }, level = 50, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-12) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__18"] = { affix = "", "Adds (30-40) to (70-80) Physical Damage", statOrder = { 1281 }, level = 40, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (70-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__19"] = { affix = "", "Adds (15-25) to (50-60) Physical Damage", statOrder = { 1281 }, level = 45, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-25) to (50-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__20_"] = { affix = "", "Adds (10-20) to (30-40) Physical Damage", statOrder = { 1281 }, level = 46, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__21"] = { affix = "", "Adds (90-110) to (145-170) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-110) to (145-170) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__22"] = { affix = "", "Adds (80-95) to (220-240) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-95) to (220-240) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__23_"] = { affix = "", "Adds (35-50) to (100-125) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-50) to (100-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__24"] = { affix = "", "Adds (100-130) to (360-430) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (100-130) to (360-430) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__25"] = { affix = "", "Adds (8-13) to (20-30) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__26"] = { affix = "", "Adds (70-80) to (340-375) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-80) to (340-375) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__27"] = { affix = "", "Adds (80-115) to (150-205) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-115) to (150-205) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__28"] = { affix = "", "Adds (225-265) to (315-385) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (225-265) to (315-385) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__29___"] = { affix = "", "Adds (80-100) to (200-225) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-100) to (200-225) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__30_"] = { affix = "", "Adds (45-60) to (100-120) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (45-60) to (100-120) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__31"] = { affix = "", "Adds (220-240) to (270-300) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (220-240) to (270-300) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__32"] = { affix = "", "Adds (94-98) to (115-121) Physical Damage", statOrder = { 1281 }, level = 77, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (94-98) to (115-121) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__33_"] = { affix = "", "Adds (242-260) to (268-285) Physical Damage", statOrder = { 1281 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (242-260) to (268-285) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__34"] = { affix = "", "Adds (11-14) to (17-21) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (17-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__35"] = { affix = "", "Adds (83-91) to (123-130) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (83-91) to (123-130) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__36"] = { affix = "", "Adds (70-85) to (110-118) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-85) to (110-118) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__37"] = { affix = "", "Adds (42-47) to (66-71) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (42-47) to (66-71) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__38"] = { affix = "", "Adds (25-35) to (45-55) Physical Damage", statOrder = { 1281 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (45-55) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__39"] = { affix = "", "Adds (85-110) to (135-150) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (85-110) to (135-150) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__40__"] = { affix = "", "Adds (16-22) to (40-45) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (40-45) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__41_"] = { affix = "", "Adds (40-65) to (70-100) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-65) to (70-100) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__42"] = { affix = "", "Adds (20-25) to (40-50) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-25) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__43"] = { affix = "", "Adds (5-9) to (13-18) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-18) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__44"] = { affix = "", "Adds (20-30) to (40-50) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-30) to (40-50) Physical Damage" }, } }, - ["AddedFireDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 4 Fire Damage to Attacks", statOrder = { 1365 }, level = 2, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 2 to 4 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver2New"] = { affix = "", "Adds 3 to 5 Fire Damage to Attacks", statOrder = { 1365 }, level = 12, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver9New"] = { affix = "", "Adds (12-15) to (24-27) Fire Damage to Attacks", statOrder = { 1365 }, level = 57, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (24-27) Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver10"] = { affix = "", "4 to 8 Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 28, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "4 to 8 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueQuiver1a"] = { affix = "", "5 to 10 Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 1, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "5 to 10 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueBootsStrDex1"] = { affix = "", "Adds 12 to 24 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 12 to 24 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueGlovesInt1"] = { affix = "", "Adds 4 to 8 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 4 to 8 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueAmulet7"] = { affix = "", "Adds (18-24) to (32-40) Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (18-24) to (32-40) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing10"] = { affix = "", "Adds (8-15) to (20-28) Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-15) to (20-28) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing20"] = { affix = "", "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueBelt10"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (14-16) to (30-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing31"] = { affix = "", "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing28"] = { affix = "", "Adds (12-15) to (25-30) Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (25-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueShieldStr3"] = { affix = "", "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueShieldDemigods"] = { affix = "", "Adds 10 to 20 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 10 to 20 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing36"] = { affix = "", "Adds (8-12) to (20-30) Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-12) to (20-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUnique__1_"] = { affix = "", "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__2"] = { affix = "", "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__3"] = { affix = "", "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__4"] = { affix = "", "Adds 40 to 75 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 40 to 75 Fire Damage to Attacks" }, } }, - ["AddedColdDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 3 Cold Damage to Attacks", statOrder = { 1374 }, level = 2, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 2 to 3 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyDex1"] = { affix = "", "(105-145) to (160-200) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 47, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(105-145) to (160-200) Added Cold Damage with Bow Attacks" }, } }, - ["AddedColdDamageUniqueDexHelmet1"] = { affix = "", "Adds 15 to 25 Cold Damage to Attacks", statOrder = { 1374 }, level = 15, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 15 to 25 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBow9"] = { affix = "", "Adds (48-60) to (72-90) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (48-60) to (72-90) Cold Damage" }, } }, - ["AddedColdDamageUniqueRing18"] = { affix = "", "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBelt10"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-12) to (24-28) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueRing30"] = { affix = "", "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueGlovesStrInt3_"] = { affix = "", "Adds (60-72) to (88-100) Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (60-72) to (88-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueShieldStrDex3"] = { affix = "", "Adds 12 to 15 Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 12 to 15 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 10 to 20 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__2"] = { affix = "", "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__3"] = { affix = "", "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__4"] = { affix = "", "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__5"] = { affix = "", "Adds (26-32) to (42-48) Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (26-32) to (42-48) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__6"] = { affix = "", "Adds (12-15) to (25-30) Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-15) to (25-30) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__7"] = { affix = "", "Adds (30-40) to (80-100) Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (80-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__9"] = { affix = "", "Adds 30 to 65 Cold Damage to Attacks", statOrder = { 1374 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 30 to 65 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__10"] = { affix = "", "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__11"] = { affix = "", "Adds (30-40) to (60-70) Cold Damage to Attacks", statOrder = { 1374 }, level = 71, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (60-70) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1385 }, level = 2, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueHelmetStrInt1"] = { affix = "", "Adds 1 to 30 Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to 30 Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBootsStrInt1"] = { affix = "", "Adds 1 to 120 Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 120 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesInt1"] = { affix = "", "Adds 1 to 13 Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 13 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt1"] = { affix = "", "Adds (1-4) to (30-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (30-50) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueDagger3"] = { affix = "", "Adds 3 to 30 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to 30 Lightning Damage" }, } }, - ["AddedLocalLightningDamageUniqueClaw1"] = { affix = "", "Adds 1 to (650-850) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (650-850) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBow8"] = { affix = "", "Adds 1 to 85 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 85 Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyInt5_"] = { affix = "", "Adds 1 to (4-12) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (4-12) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt3"] = { affix = "", "Adds 1 to 100 Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 100 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBodyInt8"] = { affix = "", "Adds 1 to 40 Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 40 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBow9"] = { affix = "", "Adds 1 to (120-150) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (120-150) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyStrDex2"] = { affix = "", "Adds 1 to (20-30) Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueRing19"] = { affix = "", "Adds 1 to (50-70) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 25, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (50-70) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBelt10"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-68) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBelt12"] = { affix = "", "Adds 1 to (30-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 55, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning Damage to Attacks" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword6"] = { affix = "", "Adds 1 to (550-650) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-650) Lightning Damage" }, } }, - ["AddedLightningDamageUnique__1"] = { affix = "", "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__3"] = { affix = "", "Adds 10 to 130 Lightning Damage to Attacks", statOrder = { 1385 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 10 to 130 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUnique__4"] = { affix = "", "(12-18) to (231-347) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 1, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(12-18) to (231-347) Added Lightning Damage with Wand Attacks" }, } }, - ["AddedChaosDamageUniqueRing1"] = { affix = "", "Adds (10-15) to (20-25) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-15) to (20-25) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrDex4"] = { affix = "", "Adds (6-9) to (12-16) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (12-16) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrInt2"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to 80 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueQuiver7"] = { affix = "", "Adds (13-18) to (26-32) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-18) to (26-32) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueAmulet23"] = { affix = "", "Adds 19 to 43 Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 19 to 43 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBow12"] = { affix = "", "Adds (50-80) to (130-180) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (50-80) to (130-180) Chaos Damage" }, } }, - ["AddedChaosDamageUnique__1"] = { affix = "", "Adds 12 to 24 Chaos Damage to Attacks", statOrder = { 1392 }, level = 25, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 12 to 24 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUnique__2"] = { affix = "", "Adds (7-10) to (15-18) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-10) to (15-18) Chaos Damage to Attacks" }, } }, - ["LifeLeechUniqueRing2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing2"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw1"] = { affix = "", "8% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "8% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw1"] = { affix = "", "1.6% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw2"] = { affix = "", "10% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "10% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechAllAttackDamagePermyriadImplicitClaw2"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 7991 }, level = 1, group = "LifeLeechLocalAllDamagePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1828023575] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandMace1"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandMace1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueGlovesStrDex1"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex2"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueAmulet9"] = { affix = "", "(6-10)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(6-10)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueAmulet9"] = { affix = "", "(1.2-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.2-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandAxe4"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandAxe4"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw3"] = { affix = "", "6% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw3"] = { affix = "", "1.2% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw6"] = { affix = "", "15% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "15% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueRing12"] = { affix = "", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing12"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueHelmetInt7"] = { affix = "", "(2-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.4-0.8)% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.4-0.8)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStr3"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStr3"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrDex3"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrDex3"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrInt5"] = { affix = "", "(4-5)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(4-5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrInt5"] = { affix = "", "(0.8-1)% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.8-1)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex5"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetDexInt6"] = { affix = "", "(0.4-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.4-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__2"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__3"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad__1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__4"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__5"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__7"] = { affix = "", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.3-0.5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__8"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__9"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["AxeBonus1"] = { affix = "Butcher's", "5% increased Physical Damage with Axes", "2% increased Attack Speed with Axes", "3% increased Accuracy Rating with Axes", statOrder = { 1308, 1425, 1443 }, level = 6, group = "AxeBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538120572] = { "3% increased Accuracy Rating with Axes" }, [3550868361] = { "2% increased Attack Speed with Axes" }, [2008219439] = { "5% increased Physical Damage with Axes" }, } }, - ["StaffBonus1"] = { affix = "Monk's", "5% increased Physical Damage with Staves", "2% increased Attack Speed with Staves", "3% increased Accuracy Rating with Staves", statOrder = { 1312, 1426, 1444 }, level = 8, group = "StaffBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1394963553] = { "2% increased Attack Speed with Staves" }, [1617235962] = { "3% increased Accuracy Rating with Staves" }, [3150705301] = { "5% increased Physical Damage with Staves" }, } }, - ["ClawBonus1"] = { affix = "Feline", "5% increased Physical Damage with Claws", "2% increased Attack Speed with Claws", "3% increased Accuracy Rating with Claws", statOrder = { 1320, 1427, 1445 }, level = 10, group = "ClawBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1421645223] = { "2% increased Attack Speed with Claws" }, [1297965523] = { "3% increased Accuracy Rating with Claws" }, [635761691] = { "5% increased Physical Damage with Claws" }, } }, - ["DaggerBonus1"] = { affix = "Assassin's", "5% increased Physical Damage with Daggers", "2% increased Attack Speed with Daggers", "3% increased Accuracy Rating with Daggers", statOrder = { 1326, 1428, 1446 }, level = 7, group = "DaggerBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538566497] = { "2% increased Attack Speed with Daggers" }, [3882531569] = { "5% increased Physical Damage with Daggers" }, [2054715690] = { "3% increased Accuracy Rating with Daggers" }, } }, - ["MaceBonus1"] = { affix = "Crusher's", "5% increased Physical Damage with Maces or Sceptres", "2% increased Attack Speed with Maces or Sceptres", "3% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1332, 1429, 1447 }, level = 5, group = "MaceBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3208450870] = { "3% increased Accuracy Rating with Maces or Sceptres" }, [3774831856] = { "5% increased Physical Damage with Maces or Sceptres" }, [2515515064] = { "2% increased Attack Speed with Maces or Sceptres" }, } }, - ["BowBonus1"] = { affix = "Archer's", "5% increased Physical Damage with Bows", "2% increased Attack Speed with Bows", "3% increased Accuracy Rating with Bows", statOrder = { 1338, 1430, 1448 }, level = 3, group = "BowBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759735052] = { "2% increased Attack Speed with Bows" }, [402920808] = { "5% increased Physical Damage with Bows" }, [169946467] = { "3% increased Accuracy Rating with Bows" }, } }, - ["SwordBonus1"] = { affix = "Blademaster's", "5% increased Physical Damage with Swords", "2% increased Attack Speed with Swords", "3% increased Accuracy Rating with Swords", statOrder = { 1343, 1431, 1449 }, level = 2, group = "SwordBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3293699237] = { "2% increased Attack Speed with Swords" }, [3814560373] = { "5% increased Physical Damage with Swords" }, [2090868905] = { "3% increased Accuracy Rating with Swords" }, } }, - ["WandBonus1"] = { affix = "Magician's", "5% increased Physical Damage with Wands", "2% increased Attack Speed with Wands", "3% increased Accuracy Rating with Wands", statOrder = { 1350, 1432, 1450 }, level = 4, group = "WandBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2150183156] = { "3% increased Accuracy Rating with Wands" }, [3720627346] = { "2% increased Attack Speed with Wands" }, [2769075491] = { "5% increased Physical Damage with Wands" }, } }, - ["AccuracyPercentImplicitSword1"] = { affix = "", "40% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "40% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicitSword2"] = { affix = "", "30% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "30% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword1"] = { affix = "", "60% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "60% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword2_"] = { affix = "", "45% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "45% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueBow5"] = { affix = "", "(15-30)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-30)% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueClaw9"] = { affix = "", "15% reduced Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "15% reduced Global Accuracy Rating" }, } }, - ["AccuracyPercentUnique__1"] = { affix = "", "100% reduced Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% reduced Global Accuracy Rating" }, } }, - ["StaffBlockPercentImplicitStaff1"] = { affix = "", "+20% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+20% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff2"] = { affix = "", "+22% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+22% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff3"] = { affix = "", "+25% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+25% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff7"] = { affix = "", "+6% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+6% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff9"] = { affix = "", "+12% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+12% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 36, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__2_"] = { affix = "", "+10% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+10% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__3"] = { affix = "", "+(12-16)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+(12-16)% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__4_"] = { affix = "", "+5% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__5"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1156 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercentImplicitStaff__1"] = { affix = "", "+20% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1155 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+20% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent2"] = { affix = "", "+22% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1155 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+22% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent3"] = { affix = "", "+25% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1155 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+25% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["BlockPercentUniqueHelmetStrDex4"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueAmulet16"] = { affix = "", "(10-15)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(10-15)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueDescentStaff1"] = { affix = "", "16% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "16% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueQuiver4"] = { affix = "", "(20-24)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 35, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(20-24)% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit1"] = { affix = "", "4% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "4% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit2_"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__1"] = { affix = "", "(8-12)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(8-12)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__2"] = { affix = "", "20% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "20% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__3"] = { affix = "", "(4-6)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 40, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-6)% Chance to Block Attack Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre2"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre3"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew2"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew3"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew4"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew5"] = { affix = "", "14% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "14% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew6"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew7"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew8"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew9"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew10"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew11"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew12___"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew13"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew14"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew15"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew16"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew17"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew18"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew19"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew20"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew21__"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew22"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitAtlasRing_"] = { affix = "", "(15-25)% increased Elemental Damage", statOrder = { 1985 }, level = 100, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-25)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__1"] = { affix = "", "(15-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-50)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__2"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitBelt1"] = { affix = "", "(12-24)% increased Global Physical Damage", statOrder = { 1236 }, level = 2, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(12-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1"] = { affix = "", "8% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2"] = { affix = "", "12% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "12% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueRing1"] = { affix = "", "5% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "5% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStr1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueQuiver2"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1236 }, level = 7, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt2"] = { affix = "", "(25-40)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(25-40)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldStrDex1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStrDex2"] = { affix = "", "10% reduced Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% reduced Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueGlovesStr2"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt9d"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueDescentClaw1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldDexInt1"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt13"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBootsDexInt4"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueSwordImplicit1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBowImplicit1"] = { affix = "", "(20-24)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__3"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1236 }, level = 55, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "100% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "100% increased Global Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow4"] = { affix = "", "30% less Damage", statOrder = { 2461 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "30% less Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1"] = { affix = "", "100% increased Damage when on Low Life", statOrder = { 1220 }, 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 = { 1220 }, 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 = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-14) to (24-34) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw3"] = { affix = "", "Adds 25 to 30 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 25 to 30 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandAxe1"] = { affix = "", "Adds 30 to 40 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 30 to 40 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (49-98) to (101-140) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentDagger1"] = { affix = "", "Adds 1 to 4 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentStaff1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger2"] = { affix = "", "Adds 12 to 24 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 12 to 24 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger8"] = { affix = "", "Adds (140-155) to (210-235) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (140-155) to (210-235) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre7"] = { affix = "", "Adds (65-85) to (100-160) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-85) to (100-160) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword9"] = { affix = "", "Adds (30-50) to (65-80) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-50) to (65-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword10"] = { affix = "", "Adds (3-6) to (33-66) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (33-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow11"] = { affix = "", "Adds (12-16) to (20-24) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-16) to (20-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger11"] = { affix = "", "Adds (1-2) to (3-5) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (3-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger12"] = { affix = "", "Adds (3-6) to (9-13) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (9-13) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw9"] = { affix = "", "Adds (2-6) to (16-22) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-6) to (16-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-15) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe8"] = { affix = "", "Adds (5-9) to (13-17) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword12"] = { affix = "", "Adds (3-4) to (5-8) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-8) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword13"] = { affix = "", "Adds (5-8) to (10-14) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-14) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace8"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique14"] = { affix = "", "Adds (10-16) to (12-30) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (12-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage__1"] = { affix = "", "Adds (7-10) to (15-25) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-10) to (15-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (25-50) to (85-125) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-50) to (85-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds 20 to 50 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 20 to 50 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__4"] = { affix = "", "Adds (18-22) to (36-44) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (36-44) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__5"] = { affix = "", "Adds (8-12) to (16-24) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (26-32) to (36-42) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-32) to (36-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7_"] = { affix = "", "Adds (75-92) to (125-154) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (75-92) to (125-154) Physical Damage" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1"] = { affix = "", "60% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "60% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueIntHelmet1"] = { affix = "", "+(150-225) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-225) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt1"] = { affix = "", "+(5-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(5-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt1"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt2"] = { affix = "", "(40-80)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyInt8"] = { affix = "", "(125-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(125-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt2"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt1"] = { affix = "", "+18 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+18 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt2"] = { affix = "", "+32 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+32 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt4"] = { affix = "", "50% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "50% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt1"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt3"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt4"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt5"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt7"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt5"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "(180-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesDexInt3"] = { affix = "", "+(25-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt5_"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt6"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt7"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt3"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g"] = { affix = "", "(270-300)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(270-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt10"] = { affix = "", "(130-170)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-170)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt6"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__1"] = { affix = "", "(250-300)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(250-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__2"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent___3"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique___4_"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__6"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__7"] = { affix = "", "(170-230)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(170-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__8"] = { affix = "", "(475-600)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(475-600)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__9"] = { affix = "", "(240-260)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-260)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__10"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__11"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__12"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__13"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__14"] = { affix = "", "(130-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__15_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__16"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__17"] = { affix = "", "(120-140)% increased Energy Shield", statOrder = { 1565 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-140)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__18"] = { affix = "", "(220-250)% increased Energy Shield", statOrder = { 1565 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(220-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__19"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__20_"] = { affix = "", "(100-130)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__21"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__22"] = { affix = "", "(200-230)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__23"] = { affix = "", "(240-280)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-280)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__24"] = { affix = "", "(180-230)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__25_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__26"] = { affix = "", "(60-80)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__27"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__28__"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__29"] = { affix = "", "(80-130)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__30___"] = { affix = "", "(300-350)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(300-350)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__31____"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__32"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__33"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUniqueOneHandSword2"] = { affix = "", "(40-50)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1"] = { affix = "", "60% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "60% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1"] = { affix = "", "+(75-100) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(75-100) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1"] = { affix = "", "+(10-20) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(10-20) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(35-45) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3"] = { affix = "", "+(200-300) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(200-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-40) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2"] = { affix = "", "+(180-220) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(180-220) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5"] = { affix = "", "+(400-600) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(400-600) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3"] = { affix = "", "(200-220)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a"] = { affix = "", "(380-420)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(380-420)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1"] = { affix = "", "+(100-150) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique6"] = { affix = "", "(90-140)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique7"] = { affix = "", "(120-180)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_"] = { affix = "", "(90-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "+(120-160) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(120-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3"] = { affix = "", "(350-400)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-400)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4"] = { affix = "", "100% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "100% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5"] = { affix = "", "(165-205)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(165-205)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11"] = { affix = "", "(130-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(130-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18"] = { affix = "", "(150-180)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25"] = { affix = "", "(150-250)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33"] = { affix = "", "(100-160)% increased Armour", statOrder = { 1547 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-160)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35"] = { affix = "", "(150-230)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-230)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED"] = { affix = "", "(120-200)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38"] = { affix = "", "(120-240)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-240)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1"] = { affix = "", "+2000 to Armour", statOrder = { 1545 }, level = 38, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+2000 to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(100-120) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-120) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex1"] = { affix = "", "(140-220)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(140-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueDexHelmet2"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex1"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex3"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex2"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex3"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex4"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex3"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex3"] = { affix = "", "(180-200)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(180-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex2"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex5"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(35-45) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex6"] = { affix = "", "150% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "150% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex6"] = { affix = "", "+(240-380) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(240-380) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex6"] = { affix = "", "(200-240)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-240)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3"] = { affix = "", "(180-220)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(180-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUnique__1"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex6"] = { affix = "", "(160-200)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4"] = { affix = "", "+(40-60) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex7"] = { affix = "", "+(120-180) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(120-180) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__1"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(100-150) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__2"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(600-700) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__3"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(400-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__4"] = { affix = "", "+(350-500) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(350-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__5"] = { affix = "", "+(80-120) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(80-120) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex4"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5"] = { affix = "", "(150-180)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-180)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex7"] = { affix = "", "180% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "180% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c"] = { affix = "", "(380-420)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(380-420)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvationRatingPercentUniqueBootsDex9"] = { affix = "", "(20-40)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(20-40)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__1"] = { affix = "", "(160-220)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__3"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__4"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__6"] = { affix = "", "(300-340)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(300-340)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__7"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-130)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__8"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__9"] = { affix = "", "(130-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(130-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__11"] = { affix = "", "(450-500)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(450-500)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__13"] = { affix = "", "(110-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(110-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__14"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__15_"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__16"] = { affix = "", "(60-120)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__17"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__18"] = { affix = "", "(170-250)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(170-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__19"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__20"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__21"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2"] = { affix = "", "(120-150)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1"] = { affix = "", "(20-60)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(20-60)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2"] = { affix = "", "(180-220)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(180-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4"] = { affix = "", "(300-400)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(300-400)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3"] = { affix = "", "(140-160)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4"] = { affix = "", "(120-140)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5"] = { affix = "", "(220-240)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(220-240)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3"] = { affix = "", "(160-180)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(160-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2"] = { affix = "", "(150-180)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6"] = { affix = "", "(70-80)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__1"] = { affix = "", "(400-500)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(400-500)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__2"] = { affix = "", "(50-75)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-75)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__3"] = { affix = "", "(140-190)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__4"] = { affix = "", "200% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "200% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__5"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__6"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__7"] = { affix = "", "(60-140)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__8"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__9_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__10_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__11"] = { affix = "", "(150-190)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__12"] = { affix = "", "(140-220)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__13_"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__14"] = { affix = "", "(250-300)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(250-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__15"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__16"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__17_"] = { affix = "", "(100-140)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__18_"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__19"] = { affix = "", "333% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "333% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__20"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__21"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__22"] = { affix = "", "1000% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "1000% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__23_"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__24"] = { affix = "", "(120-160)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__25"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__27"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__28"] = { affix = "", "(50-70)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-70)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__30"] = { affix = "", "(40-80)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 97, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex1"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBootsStrDex3"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex2"] = { affix = "", "(90-120)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4"] = { affix = "", "(120-140)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b"] = { affix = "", "(200-220)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex4"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6"] = { affix = "", "(90-110)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex3"] = { affix = "", "(90-130)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-130)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex4"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex5"] = { affix = "", "(170-250)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__1"] = { affix = "", "(120-160)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-160)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__2"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__3_"] = { affix = "", "(40-70)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-70)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__4"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__5_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__6"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__8_"] = { affix = "", "(100-140)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__9"] = { affix = "", "(170-200)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__10_"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__11"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__12"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__13"] = { affix = "", "(150-300)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__14"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__15_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__16__"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__17_"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__18"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__19_"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__20"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__22"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__23"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__25"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__27"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__28"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "(245-280)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(245-280)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6"] = { affix = "", "(100-130)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-130)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3"] = { affix = "", "(220-250)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(220-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "(120-140)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-140)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__2"] = { affix = "", "(90-110)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(90-110)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__3"] = { affix = "", "(230-260)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(230-260)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__4"] = { affix = "", "(140-170)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__5"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__6_"] = { affix = "", "(100-120)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__7"] = { affix = "", "(130-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(130-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__8"] = { affix = "", "(80-100)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__9"] = { affix = "", "(500-600)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(500-600)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__10"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__11_"] = { affix = "", "(160-180)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__12"] = { affix = "", "(180-220)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(180-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__13"] = { affix = "", "(120-170)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__14"] = { affix = "", "(160-200)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__15"] = { affix = "", "(260-300)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(260-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__16"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__17"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__18"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__19___"] = { affix = "", "(250-300)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(250-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__20"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__21_"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__22"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__23"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__24"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__25"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__26"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__27"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__28"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__29"] = { affix = "", "(350-400)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(350-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__30_"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__31"] = { affix = "", "(120-200)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__32_"] = { affix = "", "(160-220)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__33"] = { affix = "", "(140-160)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__34"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__35"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__36"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__37"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__39"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldUnique__1_"] = { affix = "", "(250-350)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(250-350)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2"] = { affix = "", "+(30-50) to maximum Energy Shield", "(10-15)% increased Stun and Block Recovery", statOrder = { 1564, 1907 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-15)% increased Stun and Block Recovery" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3"] = { affix = "", "(100-140)% increased Energy Shield", "(150-200)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 1, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, [2511217560] = { "(150-200)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1"] = { affix = "", "+(100-120) to maximum Energy Shield", "(30-40)% increased Stun and Block Recovery", statOrder = { 1564, 1907 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2"] = { affix = "", "(100-120)% increased Armour", "10% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, [2511217560] = { "10% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1"] = { affix = "", "(180-220)% increased Armour", "20% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1"] = { affix = "", "70% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "70% increased Evasion Rating" }, } }, - ["LocalAddedFireDamageUniqueTwoHandAxe1"] = { affix = "", "Adds (16-21) to (32-38) Fire Damage", statOrder = { 1367 }, level = 37, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (16-21) to (32-38) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueRapier1"] = { affix = "", "Adds 3 to 7 Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 7 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueBow6"] = { affix = "", "Adds 25 to 50 Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 25 to 50 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (49-98) to (101-140) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueTwoHandSword6"] = { affix = "", "Adds (425-475) to (550-600) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (425-475) to (550-600) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueDescentOneHandMace1"] = { affix = "", "Adds 3 to 6 Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 6 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (10-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (5-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 100 to 100 Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__2"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (38-46) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__3"] = { affix = "", "Adds (315-360) to (450-540) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (315-360) to (450-540) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__4"] = { affix = "", "Adds (223-250) to (264-280) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (223-250) to (264-280) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__5__"] = { affix = "", "Adds (130-160) to (220-240) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (130-160) to (220-240) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__6"] = { affix = "", "Adds (30-45) to (60-80) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-45) to (60-80) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__7"] = { affix = "", "Adds (76-98) to (161-176) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (161-176) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__8"] = { affix = "", "Adds (180-230) to (310-360) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (180-230) to (310-360) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE1_"] = { affix = "", "Adds (46-55) to (69-83) Fire Damage", statOrder = { 1367 }, level = 30, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-55) to (69-83) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE2_"] = { affix = "", "Adds (80-97) to (126-144) Fire Damage", statOrder = { 1367 }, level = 50, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-97) to (126-144) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE3_"] = { affix = "", "Adds (121-133) to (184-197) Fire Damage", statOrder = { 1367 }, level = 70, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (121-133) to (184-197) Fire Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandMace2"] = { affix = "", "Adds 11 to 23 Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 11 to 23 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandSword2"] = { affix = "", "Adds 35 to 70 Cold Damage", statOrder = { 1376 }, level = 18, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 35 to 70 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueClaw5"] = { affix = "", "Adds 25 to 50 Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 25 to 50 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (49-98) to (101-140) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 2 to 4 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandMace4_"] = { affix = "", "Adds (10-20) to (30-50) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-20) to (30-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-15) to (20-25) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff14"] = { affix = "", "Adds (25-35) to (45-60) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-35) to (45-60) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 100 to 100 Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__2"] = { affix = "", "Adds (26-32) to (36-42) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (36-42) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__3"] = { affix = "", "Adds (30-38) to (40-50) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-38) to (40-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__4"] = { affix = "", "Adds (180-210) to (240-280) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (180-210) to (240-280) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__5"] = { affix = "", "Adds (80-100) to (160-200) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (80-100) to (160-200) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__6_"] = { affix = "", "Adds (310-350) to (460-500) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (310-350) to (460-500) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__7"] = { affix = "", "Adds (160-190) to (280-320) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (160-190) to (280-320) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__8"] = { affix = "", "Adds (130-150) to (270-300) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (130-150) to (270-300) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__9_"] = { affix = "", "Adds (385-440) to (490-545) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (385-440) to (490-545) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__10"] = { affix = "", "Adds (150-200) to (300-350) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (300-350) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__11"] = { affix = "", "Adds (164-204) to (250-300) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (164-204) to (250-300) Cold Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword3"] = { affix = "", "Adds 1 to (210-250) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (210-250) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueBow10"] = { affix = "", "Adds 1 to (600-750) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (600-750) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueDescentTwoHandSword1_"] = { affix = "", "Adds 1 to 9 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 9 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword7"] = { affix = "", "Adds 1 to (40-50) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-50) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueStaff14"] = { affix = "", "Adds (1-10) to (70-90) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (70-90) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 100 to 100 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__2"] = { affix = "", "Adds 1 to (35-45) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (35-45) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (45-55) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (45-55) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (50-60) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__5"] = { affix = "", "Adds 1 to (60-70) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-70) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__6"] = { affix = "", "Adds 1 to 75 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 75 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (550-600) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-600) Lightning Damage" }, } }, - ["IncreasedEvasionRatingPercentUnique__1_"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(60-100)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(15-25)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercentUnique__1"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__3"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__4"] = { affix = "", "5% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "5% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__6"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueAmulet13"] = { affix = "", "50% reduced maximum Energy Shield", statOrder = { 1566 }, level = 20, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "50% reduced maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueRing16"] = { affix = "", "25% reduced maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "25% reduced maximum Energy Shield" }, } }, - ["IncreasedEvasionRatingUniqueQuiver1"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet7"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRapier1"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword4"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(400-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet17"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueQuiver3_"] = { affix = "", "+350 to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+350 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword9"] = { affix = "", "+(180-200) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(180-200) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRing30"] = { affix = "", "+(200-300) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(200-300) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique___1"] = { affix = "", "+110 to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+110 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__2"] = { affix = "", "+300 to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+300 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__3"] = { affix = "", "+(1000-1500) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(1000-1500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__4"] = { affix = "", "+(300-500) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__5_"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-700) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__6_"] = { affix = "", "+(600-1000) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-1000) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__7"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyInt5"] = { affix = "", "+(30-60) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBootsDex8"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueRing12"] = { affix = "", "+(260-300) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueAmulet16"] = { affix = "", "+(400-500) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueQuiver4"] = { affix = "", "+(400-450) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-450) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueBelt9"] = { affix = "", "+(300-350) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-350) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(450-500) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(450-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__3"] = { affix = "", "+(400-500) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "+(260-300) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__4"] = { affix = "", "+(350-400) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(350-400) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__5"] = { affix = "", "+(180-200) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(180-200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__6_"] = { affix = "", "+(800-1200) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(800-1200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__7"] = { affix = "", "+(600-700) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-700) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__8"] = { affix = "", "+(300-500) to Armour", statOrder = { 1544 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__9"] = { affix = "", "+(80-100) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-100) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__10"] = { affix = "", "+(600-1000) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-1000) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__11"] = { affix = "", "+(200-400) to Armour", statOrder = { 1544 }, level = 98, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(200-400) to Armour" }, } }, - ["MovementVelocityMarakethBowImplicit1"] = { affix = "", "6% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityMarakethBowImplicit2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield2"] = { affix = "", "6% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield3"] = { affix = "", "9% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueIntHelmet2"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt1"] = { affix = "", "(10-25)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-25)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueGlovesStrDex2"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueShieldStr1"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityImplicitArmour1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandMace3"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt4"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBow7"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex4"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueClaw3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt5"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetDex6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetInt6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueAmulet12"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDex4"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBodyDex6"] = { affix = "", "25% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% reduced Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique___6"] = { affix = "", "50% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "50% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt2"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityDescent2Boots1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex4"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex3"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt2_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex7"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsA1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsW1"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandSword9"] = { affix = "", "3% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityVictorAmulet"] = { affix = "", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 16, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStrDex5_"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStr5"] = { affix = "", "20% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet20"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt4"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex5"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt6"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__2"] = { affix = "", "(5-10)% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__4"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique___5"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__7"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__8"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__9_"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__10"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__11"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__12"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__13"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__14"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__15"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__16"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__17__"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__18"] = { affix = "", "15% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__20_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__21"] = { affix = "", "(1-40)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-40)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__22"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__24"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__25"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__26"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__27"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__28"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__29"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__30"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__31"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__32"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__33_"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__34"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__35"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__36_"] = { affix = "", "(5-8)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-8)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__37"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__38"] = { affix = "", "(1-20)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__39_"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__40"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__42"] = { affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__43"] = { affix = "", "25% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__44"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__45"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__46"] = { affix = "", "(8-12)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-12)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__47_"] = { affix = "", "20% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__48"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__49"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__50"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__51"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__52"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__53"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__54"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__56"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__57"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__58"] = { affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 100, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__1"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__2"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__3"] = { affix = "", "3% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUniqueOneHandMace7"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["SpellDamageImplicitShield1"] = { affix = "", "(5-10)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield2"] = { affix = "", "(10-15)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-15)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield3"] = { affix = "", "(15-20)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-20)% increased Spell Damage" }, } }, - ["SpellDamageImplicitArmour1"] = { affix = "", "(3-10)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitGloves1"] = { affix = "", "(12-16)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-16)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetDexInt1"] = { affix = "", "(15-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueGlovesInt2"] = { affix = "", "100% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldInt1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldStrInt1"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand1"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff2"] = { affix = "", "(50-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueBodyInt7"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre5"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDescentWand1"] = { affix = "", "20% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "20% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand4"] = { affix = "", "(20-28)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-28)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff6"] = { affix = "", "(120-160)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-160)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand7"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetInt8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDagger10"] = { affix = "", "(40-60)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-60)% increased Fire Damage" }, } }, - ["SpellDamageUniqueStaff12"] = { affix = "", "(50-70)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-70)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff11_"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueRing35"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__2"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageUnique__3"] = { affix = "", "40% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "40% increased Spell Damage" }, } }, - ["SpellDamageUnique__4"] = { affix = "", "(20-45)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-45)% increased Spell Damage" }, } }, - ["SpellDamageUnique__5"] = { affix = "", "(75-90)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-90)% increased Spell Damage" }, } }, - ["SpellDamageUnique__6"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__7"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__8_"] = { affix = "", "(100-140)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-140)% increased Spell Damage" }, } }, - ["SpellDamageUnique__9"] = { affix = "", "(70-100)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-100)% increased Spell Damage" }, } }, - ["SpellDamageUnique__10"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__11"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1228 }, level = 85, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__12"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__13"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__14"] = { affix = "", "(30-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-60)% increased Spell Damage" }, } }, - ["SpellDamageUnique__15"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageUnique__16"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__17"] = { affix = "", "(100-150)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-150)% increased Spell Damage" }, } }, - ["SpellDamageUnique__18"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger1"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger4"] = { affix = "", "(60-70)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-70)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueWand3"] = { affix = "", "80% reduced Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "80% reduced Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueTwoHandAxe9"] = { affix = "", "(100-200)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand1"] = { affix = "", "(8-12)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand2"] = { affix = "", "(10-14)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand3"] = { affix = "", "(11-15)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(11-15)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand4"] = { affix = "", "(13-17)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand5"] = { affix = "", "(15-19)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand6"] = { affix = "", "(17-21)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-21)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand7"] = { affix = "", "(18-22)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand8"] = { affix = "", "(20-24)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand9"] = { affix = "", "(22-26)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-26)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand10"] = { affix = "", "(24-28)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(24-28)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand11"] = { affix = "", "(26-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand12"] = { affix = "", "(27-31)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-31)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand13"] = { affix = "", "(29-33)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-33)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand14"] = { affix = "", "(31-35)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand15"] = { affix = "", "(33-37)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-37)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand16"] = { affix = "", "(35-39)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand17"] = { affix = "", "(36-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-40)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand18"] = { affix = "", "(38-42)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-42)% increased Spell Damage" }, } }, - ["TrapThrowingSpeedUnique_1"] = { affix = "", "(6-12)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-12)% increased Trap Throwing Speed" }, } }, - ["NumberOfAdditionalTrapsUnique_1"] = { affix = "", "Can have up to (3-5) additional Traps placed at a time", statOrder = { 2260 }, level = 1, group = "NumberOfAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to (3-5) additional Traps placed at a time" }, } }, - ["GraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 30 Will of the Lords Skill", statOrder = { 698 }, level = 85, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [608058997] = { "Grants Level 30 Will of the Lords Skill" }, } }, - ["HeraldOfTheBreachUnique_1"] = { affix = "", "Grants Level 30 Herald of the Hive Skill", statOrder = { 713 }, level = 53, group = "GrantsHeraldOfTheBreach", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3610535490] = { "Grants Level 30 Herald of the Hive Skill" }, } }, - ["SoulcordDiamondShrineUnique_1"] = { affix = "", "You have Diamond Shrine Buff while affected by no Flasks", statOrder = { 597 }, level = 70, group = "SoulcordDiamondShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1962944794] = { "You have Diamond Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordGloomShrineUnique__1"] = { affix = "", "You have Gloom Shrine Buff while affected by no Flasks", statOrder = { 599 }, level = 70, group = "SoulcordGloomShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [1525347447] = { "You have Gloom Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordAccelerationShrineUnique__1"] = { affix = "", "You have Acceleration Shrine Buff while affected by no Flasks", statOrder = { 594 }, level = 70, group = "SoulcordAccelerationShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [845062586] = { "You have Acceleration Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordEchoingShrineUnique__1"] = { affix = "", "You have Echoing Shrine Buff while affected by no Flasks", statOrder = { 598 }, level = 70, group = "SoulcordEchoingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1941745370] = { "You have Echoing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordMassiveShrineUnique_1"] = { affix = "", "You have Massive Shrine Buff while affected by no Flasks", statOrder = { 601 }, level = 70, group = "SoulcordMassiveShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [3810260531] = { "You have Massive Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordResonatingShrineUnique_1"] = { affix = "", "You have Resonating Shrine Buff while affected by no Flasks", statOrder = { 604 }, level = 70, group = "SoulcordResonatingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [736980450] = { "You have Resonating Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordBrutalShrineUnique_1"] = { affix = "", "You have Brutal Shrine Buff while affected by no Flasks", statOrder = { 595 }, level = 70, group = "SoulcordBrutalShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1665800734] = { "You have Brutal Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordReplenishingShrineUnique_1"] = { affix = "", "You have Replenishing Shrine Buff while affected by no Flasks", statOrder = { 602 }, level = 70, group = "SoulcordReplenishingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2752009372] = { "You have Replenishing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordImpenetrableShrineUnique_1"] = { affix = "", "You have Impenetrable Shrine Buff while affected by no Flasks", statOrder = { 600 }, level = 70, group = "SoulcordImpenetrableShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1451444229] = { "You have Impenetrable Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordResistanceShrineUnique_1"] = { affix = "", "You have Resistance Shrine Buff while affected by no Flasks", statOrder = { 603 }, level = 70, group = "SoulcordResistanceShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3934633832] = { "You have Resistance Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordShockingShrineUnique_1"] = { affix = "", "You have Greater Shocking Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 605, 2817 }, level = 70, group = "SoulcordShockingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [1838429243] = { "You have Greater Shocking Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordSkeletonShrineUnique_1"] = { affix = "", "You have Greater Skeletal Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 606, 2817 }, 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 = { 596, 2817 }, 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 = { 6369 }, 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 = { 25 }, level = 80, group = "CeaselessFleshGrantedSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "minion" }, tradeHashes = { [2397674290] = { "Trigger level 25 Ceaseless Flesh once every second" }, [1560737213] = { "" }, } }, - ["FleshShieldOnMinionDeathUnique__1"] = { affix = "", "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life", statOrder = { 9314 }, 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 = { 5869, 5869.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 = { 5455 }, level = 70, group = "CannotUseManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1863071073] = { "Can't use Mana Flasks" }, } }, - ["IncreasedGoldFoundUnique__1"] = { affix = "", "(25-35)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 55, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [253956903] = { "(25-35)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["SandMirageOnCastUnique__1"] = { affix = "", "Trigger level 20 Suspend in Time on Casting a Spell", statOrder = { 196 }, level = 1, group = "SandMirageOnCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1925643497] = { "Trigger level 20 Suspend in Time on Casting a Spell" }, } }, - ["SpellDamagePerUniqueSpellRecentlyUnique__1"] = { affix = "", "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5467 }, level = 1, group = "SpellDamagePerUniqueSpellRecently", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1518586897] = { "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["WeaponElementalDamageUniqueShieldStrInt4"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueRing10"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt5"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow1"] = { affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow2"] = { affix = "", "(25-28)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-28)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow3"] = { affix = "", "(29-32)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(29-32)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitSword1"] = { affix = "", "30% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitQuiver13New"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 83, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt10"] = { affix = "", "10% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "10% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__2"] = { affix = "", "(60-80)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-80)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__3"] = { affix = "", "(40-55)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-55)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__4"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-25)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__5"] = { affix = "", "(25-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__6"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["ThisWeaponsWeaponElementalDamageUniqueWand6"] = { affix = "", "Attacks with this Weapon have (100-115)% increased Elemental Damage", statOrder = { 2934 }, level = 1, group = "ThisWeaponWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [17526298] = { "Attacks with this Weapon have (100-115)% increased Elemental Damage" }, } }, - ["ManaLeechUniqueOneHandSword2"] = { affix = "", "(3-5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(3-5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueOneHandSword2"] = { affix = "", "(0.6-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandSword2"] = { affix = "", "3% of Physical Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "3% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandSword2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.6% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueAmulet3"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueAmulet3"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechStrDexHelmet1"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadStrDexHelmet1"] = { affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1710 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesStrDex1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandMace4"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandMace4"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueHelmetInt7"] = { affix = "", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.2-0.4)% of Attack Damage Leeched as Mana", statOrder = { 1710 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "(0.2-0.4)% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueRing17"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueRing17"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesDexInt6"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesDexInt6"] = { affix = "", "0.2% of Attack Damage Leeched as Mana", statOrder = { 1710 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.2% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBodyStr6"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBodyStr6"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__1"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__2"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__3"] = { affix = "", "(1-1.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(1-1.5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ItemFoundQuantityIncreaseUniqueGlovesInt1"] = { affix = "", "(5-10)% increased Quantity of Items found", statOrder = { 1597 }, level = 14, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBelt3"] = { affix = "", "(6-8)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBootsDex2"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing7"] = { affix = "", "(10-16)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-16)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueShieldInt4"] = { affix = "", "(4-8)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBodyStr5"] = { affix = "", "(10-15)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-15)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing32"] = { affix = "", "(-10-10)% reduced Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(-10-10)% reduced Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreasedUnique__1"] = { affix = "", "5% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "5% increased Quantity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitRing1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 1601 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitAmulet1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 10, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing3"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 1601 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueAmulet6"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1601 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueStrDexHelmet1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDexInt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueTwoHandAxe2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRapier1"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRing10"] = { affix = "", "(10-20)% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetWreath1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing6"] = { affix = "", "(10-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex6"] = { affix = "", "(20-25)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRapier2"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueOneHandSword4"] = { affix = "", "50% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "50% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDemigods1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldStrDex2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRingDemigods1"] = { affix = "", "(16-24)% increased Rarity of Items found", statOrder = { 1601 }, level = 16, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-24)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "100% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "100% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing32_"] = { affix = "", "(-40-40)% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-40-40)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldDemigods"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__1"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__2"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__3"] = { affix = "", "(6-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__4_"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__5"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__6"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__7"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__8"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__9"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__10"] = { affix = "", "(20-40)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-40)% increased Rarity of Items found" }, } }, - ["ReducedEnergyShieldDelayUniqueBodyInt1"] = { affix = "", "10% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "10% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueDagger4"] = { affix = "", "(40-80)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-80)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueQuiver7"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueBelt11"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 28, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, - ["IncreasedEnergyShieldDelayUniqueHelmetInt4"] = { affix = "", "50% reduced Energy Shield Recharge Rate", statOrder = { 1570 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% reduced Energy Shield Recharge Rate" }, } }, - ["ReducedEnergyShieldDelayUnique__1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayImplicit1_"] = { affix = "", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 93, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand2"] = { affix = "", "14% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "14% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet1"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt2"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff2"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt4"] = { affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand3"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet16"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueClaw7"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueDescentWand1"] = { affix = "", "12% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre6"] = { affix = "", "(15-18)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand4"] = { affix = "", "(5-8)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff5"] = { affix = "", "18% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre7"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand7"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["ReducedCastSpeedUniqueBootsDex5"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetInt8"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetStrInt6"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueGlovesStrInt4_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff12"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand10"] = { affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand11"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueTwoHandMace8"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing38"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__1"] = { affix = "", "(4-8)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__2"] = { affix = "", "(14-18)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__3"] = { affix = "", "(30-40)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(30-40)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__4"] = { affix = "", "(4-6)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__5"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__6"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__7"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__9"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__10"] = { affix = "", "(12-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__11__"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__12"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__13"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__14"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__15_"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__16"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__17"] = { affix = "", "(1-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(1-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__18_"] = { affix = "", "(5-7)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-7)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__19__"] = { affix = "", "(8-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__20"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__21"] = { affix = "", "(7-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__22"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__23"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__24"] = { affix = "", "(8-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__25"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__26"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__27"] = { affix = "", "(5-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__28"] = { affix = "", "(12-18)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFishing__Unique1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1"] = { affix = "", "4% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "4% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2"] = { affix = "", "6% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "6% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow2"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword3"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueRapier1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace3"] = { affix = "", "25% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "25% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace1"] = { affix = "", "45% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "45% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow4"] = { affix = "", "100% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow5"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace4"] = { affix = "", "50% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow6"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw1"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw2"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow8"] = { affix = "", "(36-50)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(36-50)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw3"] = { affix = "", "5% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "5% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe1"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedOneHandSword3"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow10"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword6"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentDagger1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentBow1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentOneHandMace1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre7"] = { affix = "", "(11-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand6"] = { affix = "", "(10-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow11"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword7"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword8"] = { affix = "", "(22-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(22-27)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword9"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword8"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow12"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword11"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe9"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueDagger9"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger12"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe7"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword12"] = { affix = "", "15% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword13_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueOneHandMace6"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__1"] = { affix = "", "50% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__2"] = { affix = "", "15% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__3"] = { affix = "", "(25-30)% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace8"] = { affix = "", "10% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace8_"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__2"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__1"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(4-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__3"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__4"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__5"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__6"] = { affix = "", "(14-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__9"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__10"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__11"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__12"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__14"] = { affix = "", "(17-25)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__15"] = { affix = "", "(16-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__16"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__18"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__19"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__20"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__21"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__22"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__23"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__24"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__25"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__26_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__27"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__28"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__29"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__30"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__31"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__32"] = { affix = "", "(20-26)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-26)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__33"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__34"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__35"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__36"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__37___"] = { affix = "", "(16-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__38"] = { affix = "", "(-16-16)% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(-16-16)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__39"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__40"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__42"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__43"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__44"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__45"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield1"] = { affix = "", "6% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "6% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield2"] = { affix = "", "12% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield3"] = { affix = "", "18% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitQuiver10New"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 62, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDex2"] = { affix = "", "5% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetStrDex2"] = { affix = "", "16% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr2"] = { affix = "", "(5-15)% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex4"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex5"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex6"] = { affix = "", "15% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyStr3"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDemigods1"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex7"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver3"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 4, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1415 }, level = 10, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver7"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex5"] = { affix = "", "(6-9)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-9)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDex6"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDexInt2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver9"] = { affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldInt5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueAmulet16"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(20-30)% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__1"] = { affix = "", "30% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "30% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__2"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-25)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing37"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique_1"] = { affix = "", "(8-13)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__3_"] = { affix = "", "(1-20)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-20)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__4_"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__6"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__7"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__8"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__9"] = { affix = "", "(5-15)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedTransformedUnique__1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1415 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAccuracyUniqueBow2"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe1"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword1"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet5"] = { affix = "", "+100 to Accuracy Rating", statOrder = { 1438 }, level = 7, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+100 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueStrDexHelmet1"] = { affix = "", "+500 to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueGlovesDexInt1"] = { affix = "", "+(100-200) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-200) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandMace3"] = { affix = "", "-500 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow4"] = { affix = "", "+(25-50) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(25-50) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow7"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing12"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueHelmetInt7"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe5"] = { affix = "", "+(120-150) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(120-150) to Accuracy Rating" }, } }, - ["ReducedAccuracyUniqueTwoHandSword5"] = { affix = "", "-150 to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-150 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet17_"] = { affix = "", "+(80-120) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(80-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueDescentBow1"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing17"] = { affix = "", "+333 to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+333 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueWand6"] = { affix = "", "+(340-400) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(340-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueOneHandSword9"] = { affix = "", "+(280-300) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(280-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword7"] = { affix = "", "+(90-120) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(90-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueSceptre8"] = { affix = "", "+(160-220) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(160-220) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__1"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__2"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__3"] = { affix = "", "+(600-1000) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(600-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__4"] = { affix = "", "+(800-1000) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(800-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__6"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__7_"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__8"] = { affix = "", "+(350-500) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(350-500) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__9____"] = { affix = "", "-5000 to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-5000 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__10"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-500) to Accuracy Rating" }, } }, - ["LifeRegenerationUniqueRing1"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet1"] = { affix = "", "Regenerate (2-4) Life per second", statOrder = { 1579 }, level = 2, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-4) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet2"] = { affix = "", "Regenerate (1.2-1.6)% of Life per second", statOrder = { 1949 }, level = 93, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.2-1.6)% of Life per second" }, } }, - ["LifeRegenerationUniqueShieldDex2"] = { affix = "", "Regenerate (5-7.5) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7.5) Life per second" }, } }, - ["LifeRegenerationUniqueTwoHandAxe4"] = { affix = "", "Regenerate 20 Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 20 Life per second" }, } }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "Regenerate 2 Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 2 Life per second" }, } }, - ["LifeRegenerationUniqueShieldStrInt5"] = { affix = "", "Regenerate (100-200) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (100-200) Life per second" }, } }, - ["LifeRegenerationUniqueBootsDex5"] = { affix = "", "Regenerate (1.7-2.7) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1.7-2.7) Life per second" }, } }, - ["LifeRegenerationUniqueBelt8"] = { affix = "", "Regenerate (200-350) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-350) Life per second" }, } }, - ["LifeRegenerationUniqueGlovesStrDex5"] = { affix = "", "Regenerate (3-4) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (3-4) Life per second" }, } }, - ["LifeRegenerationUniqueRing26"] = { affix = "", "Regenerate (13-17) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-17) Life per second" }, } }, - ["LifeRegenerationUniqueRing33"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationUniqueAmulet25"] = { affix = "", "Regenerate (16-24) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-24) Life per second" }, } }, - ["LifeRegenerationUnique__1"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__2__"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__3"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__4"] = { affix = "", "Regenerate (200-250) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-250) Life per second" }, } }, - ["LifeRegenerationUnique__5"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__6"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1582 }, level = 97, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["ManaRegenerationImplicitAmulet1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 2, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitAmulet2"] = { affix = "", "(48-56)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 97, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(48-56)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitDemigodsBelt1"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing5"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueDexHelmet2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueIntHelmet2"] = { affix = "", "30% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet10"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 20, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing14"] = { affix = "", "(45-65)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-65)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBelt6"] = { affix = "", "20% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBodyDexInt2"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsStrDex4"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueOneHandMace3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBow11"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueGlovesStrInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRingDemigod1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 16, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing26"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueHelmetStrInt5"] = { affix = "", "20% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing33"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet21"] = { affix = "", "(60-100)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing34"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueShieldInt5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__1"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__2"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__3"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__4"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__6"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__7"] = { affix = "", "(45-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__8"] = { affix = "", "(40-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__9___"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__10"] = { affix = "", "(1-100)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(1-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__11___"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__12"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__14___"] = { affix = "", "60% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__15"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__16"] = { affix = "", "(60-80)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-80)% increased Mana Regeneration Rate" }, } }, - ["ReducedManaRegenerationUniqueRing27"] = { affix = "", "15% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "15% increased Mana Regeneration Rate" }, } }, - ["BaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1586 }, level = 1, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 1% of Mana per second" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword1"] = { affix = "", "8% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "8% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword2"] = { affix = "", "12% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "12% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace1"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace2"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace3_"] = { affix = "", "20% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "20% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueTwoHandMace1"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueQuiver2"] = { affix = "", "(10-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueGlovesDexInt2"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueClaw2_"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueClaw6"] = { affix = "", "10% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "10% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueTwoHandSword5"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueQuiver8"] = { affix = "", "(20-25)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(20-25)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace5"] = { affix = "", "(15-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(15-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueStaff11"] = { affix = "", "(15-20)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(15-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace6"] = { affix = "", "(10-20)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueBootsStr3"] = { affix = "", "(5-10)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-10)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUnique__1___"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUnique__2"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["CriticalStrikeChanceImplicitDagger1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1465 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [340093681] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1466 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1824597675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1467 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1410117599] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver13"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 57, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver8New"] = { affix = "", "(20-30)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 50, group = "CriticalStrikeChanceWithBows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-30)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff1"] = { affix = "", "80% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "80% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff2"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueOneHandSword2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRapier1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBodyInt4"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex4"] = { affix = "", "25% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "25% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "(60-75)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-75)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand3"] = { affix = "", "(50-65)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-65)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitRing1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 25, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRing11_"] = { affix = "", "(30-35)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 35, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-35)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet17"] = { affix = "", "(200-250)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(200-250)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesStr3"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDexInt6"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBow9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["CriticalSrikeChanceUniqueSceptre7"] = { affix = "", "(30-40)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet18"] = { affix = "", "(250-350)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(250-350)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand10"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__2"] = { affix = "", "(20-60)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__3"] = { affix = "", "(50-70)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-70)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__4_"] = { affix = "", "(120-160)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(120-160)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__5__"] = { affix = "", "(15-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__6"] = { affix = "", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueBow11"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueClaw2"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitBow1"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff7"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword8"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace4"] = { affix = "", "(15-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniquSceptre10"] = { affix = "", "(25-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword10"] = { affix = "", "(44-66)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(44-66)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand9"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger11"] = { affix = "", "30% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "30% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__1"] = { affix = "", "(26-32)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-32)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__2"] = { affix = "", "(22-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique14"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__3"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__4"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__5"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__6"] = { affix = "", "(40-60)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-60)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__7"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__8"] = { affix = "", "(50-75)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(50-75)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__10"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__11"] = { affix = "", "(20-25)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__12"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__13"] = { affix = "", "(70-90)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(70-90)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__14"] = { affix = "", "(80-100)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(80-100)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__15"] = { affix = "", "(25-35)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__16"] = { affix = "", "(8-12)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-12)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__17_"] = { affix = "", "(22-28)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-28)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__18"] = { affix = "", "(60-80)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-80)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__19"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__20"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__21"] = { affix = "", "(15-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__22"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__23"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__24"] = { affix = "", "(100-200)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(100-200)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__25"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__26"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__27"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__28"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["FireResistImplicitRing1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 20, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistImplicitAmulet1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueDexHelmet2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet4"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDexInt1"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet7"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueBelt3"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDex2"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyDex3"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt2"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStr3"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrInt5"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet16"] = { affix = "", "+(30-45)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-45)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetInt7"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistanceBodyDex6"] = { affix = "", "+(6-10)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandSword4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt6"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt9"] = { affix = "", "+(30-35)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, - ["FireResistUniqueRing15"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStrInt3"] = { affix = "", "+(50-60)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-60)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt13"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyStr5"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUniqueRing32"] = { affix = "", "+(-25-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-25-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt14"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1630 }, level = 65, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandAxe7_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStr3_"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__2"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUnique__3"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUnique__4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUnique__5"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__6"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUnique__7_"] = { affix = "", "+(26-32)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-32)% to Fire Resistance" }, } }, - ["FireResistUnique__8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__9"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__10"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistUnique__11"] = { affix = "", "-50% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-50% to Fire Resistance" }, } }, - ["FireResistUnique__12"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__13"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__14"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUnique__15"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUnique__16"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__19"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__20_"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__22_"] = { affix = "", "-(30-20)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-20)% to Fire Resistance" }, } }, - ["FireResistUnique__23_"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__24"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__25"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__26"] = { affix = "", "+(40-60)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-60)% to Fire Resistance" }, } }, - ["FireResistUnique__27_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__28_"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, - ["FireResistUnique__29"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__30"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__32"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1630 }, level = 83, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__34"] = { affix = "", "+(10-40)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-40)% to Fire Resistance" }, } }, - ["FireResistUnique__35"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__36"] = { affix = "", "+(5-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-30)% to Fire Resistance" }, } }, - ["FireResistUnique__37"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__38"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1630 }, level = 30, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["ColdResistImplicitRing1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet3"] = { affix = "", "+25% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+25% to Cold Resistance" }, } }, - ["ColdResistDexHelmet2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueStrHelmet2"] = { affix = "", "+30% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+30% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesDex1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt4"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1636 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex1"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStrInt3"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueOneHandAxe1_"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistanceBodyDex6"] = { affix = "", "+(26-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDexInt2"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyDex7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex4"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt9"] = { affix = "", "+(30-35)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, - ["ColdResistUniqueQuiver5"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing24"] = { affix = "", "+(25-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDex8"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt13"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing28"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStr5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrInt3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing32"] = { affix = "", "+(-25-50)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-25-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt14"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex7"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsStrDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__3"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 23, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__4"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__5"] = { affix = "", "+75% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+75% to Cold Resistance" }, } }, - ["ColdResistUnique__6"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__7"] = { affix = "", "+(32-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(32-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__8"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__9"] = { affix = "", "-40% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-40% to Cold Resistance" }, } }, - ["ColdResistUnique__10"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, - ["ColdResistUnique__11"] = { affix = "", "+(35-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__12"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__13"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__14"] = { affix = "", "-30% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-30% to Cold Resistance" }, } }, - ["ColdResistUnique__15"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__16"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__17"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__18"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__19"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__20"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__21"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUnique__22_"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 80, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__23"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__24"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__25"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["ColdResistUnique__26"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__27"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__29"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__30"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__31_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__32"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__33"] = { affix = "", "+(40-60)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-60)% to Cold Resistance" }, } }, - ["ColdResistUnique__34"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__35"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__36_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__37"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__38"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__39"] = { affix = "", "+(10-40)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__40"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__41"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__42"] = { affix = "", "+(5-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__43"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["LightningResistImplicitRing1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetDexInt1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueDexHelmet1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueStrDexHelmet1"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt1"] = { affix = "", "+25% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+25% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldDex2"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt1"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsStrDex2"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueAmulet15"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistanceBodyDex6"] = { affix = "", "+(11-25)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-25)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStrDex2"] = { affix = "", "-60% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-60% to Lightning Resistance" }, } }, - ["LightningResistUniqueDescentTwoHandSword1"] = { affix = "", "+40% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+40% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt9"] = { affix = "", "+(30-35)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt11"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStr5"] = { affix = "", "-(20-10)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing32"] = { affix = "", "+(-25-50)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-25-50)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing35"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsDexInt4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetInt10"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["LightningResistUnique__1"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__3"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__5"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__6"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, - ["LightningResistUnique__7"] = { affix = "", "+(35-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(35-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__8"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__9"] = { affix = "", "-30% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-30% to Lightning Resistance" }, } }, - ["LightningResistUnique__10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__11"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__12"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__13"] = { affix = "", "+(1-50)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-50)% to Lightning Resistance" }, } }, - ["LightningResistUnique__14"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__15"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__16"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__17_"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__18"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__19_"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__21"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__22"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__23_"] = { affix = "", "+75% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+75% to Lightning Resistance" }, } }, - ["LightningResistUnique__24"] = { affix = "", "+(40-60)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(40-60)% to Lightning Resistance" }, } }, - ["LightningResistUnique__25"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__26"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["LightningResistUnique__27"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__29"] = { affix = "", "+(10-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__30"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__31"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__32"] = { affix = "", "+(5-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__33"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBodyInt8"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitRing1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 38, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitBoots1"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1646 }, level = 85, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet15_"] = { affix = "", "+(8-10)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing12"] = { affix = "", "+(15-20)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-20)% to Chaos Resistance" }, } }, - ["ChaosResistHelmetStrDex2"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing16"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueDagger8"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBootsStrInt2"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetDexInt5"] = { affix = "", "+(24-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueWand7"] = { affix = "", "+(5-10)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt5"] = { affix = "", "+(43-61)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(43-61)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueQuiver9"] = { affix = "", "+(12-16)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-16)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBow12"] = { affix = "", "+(7-11)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-11)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet23"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__1"] = { affix = "", "+11% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, } }, - ["ChaosResistUnique__2"] = { affix = "", "+(8-16)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-16)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__3"] = { affix = "", "+(31-53)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-53)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__4"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__5"] = { affix = "", "+60% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+60% to Chaos Resistance" }, } }, - ["ChaosResistUnique__6"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__7"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__8"] = { affix = "", "-(20-10)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(20-10)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__11"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__15"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__16"] = { affix = "", "+(29-43)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-43)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__18_"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__19"] = { affix = "", "+(29-41)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-41)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__20_"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__21"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__22"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__23"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__24"] = { affix = "", "+(-23-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-23-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__25"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__26"] = { affix = "", "+50% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+50% to Chaos Resistance" }, } }, - ["ChaosResistUnique__27"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__28"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__29"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__30"] = { affix = "", "+(13-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__31"] = { affix = "", "+(7-19)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__34"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__35"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__36"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__37"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__38"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1646 }, level = 30, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["FireAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 25, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 25, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 25, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, - ["FireAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 78, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(8-12)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 78, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(8-12)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitBoots1_"] = { affix = "", "+(8-12)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 78, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(8-12)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__1"] = { affix = "", "+(15-25)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 75, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(15-25)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(20-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__3"] = { affix = "", "+(25-30)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(25-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__4_"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, - ["ColdAndLightningResistUnique__1"] = { affix = "", "+(20-25)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 81, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(20-25)% to Cold and Lightning Resistances" }, } }, - ["ColdAndLightningResistUnique__2"] = { affix = "", "+(15-20)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 1, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(15-20)% to Cold and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__1"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["AllResistancesImplicitShield1"] = { affix = "", "+4% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+4% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield2"] = { affix = "", "+8% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield3"] = { affix = "", "+12% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitArmour1"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitRing1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitVictorAmulet"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 16, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet2"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1624 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing4"] = { affix = "", "+(5-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueIntHelmet3"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetStrInt1"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsStr1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueGlovesStrDex2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt1"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrInt2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet9"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt2"] = { affix = "", "+25% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+25% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDex3"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt4"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDex3"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyDexInt1"] = { affix = "", "+(9-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing6"] = { affix = "", "+(10-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 30, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsInt5"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRapier2"] = { affix = "", "+(40-60)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(40-60)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing7"] = { affix = "", "+(25-40)% to all Elemental Resistances", statOrder = { 1624 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing9"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet14"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueTwoHandMace6_"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDex1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing21"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt8"] = { affix = "", "-(25-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(25-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDexInt1"] = { affix = "", "+(20-24)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDexInt4"] = { affix = "", "+(26-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(26-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBeltDemigods1"] = { affix = "", "+(16-24)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueDagger9"] = { affix = "", "+(6-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing25"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1624 }, level = 7, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt10"] = { affix = "", "+(6-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 32, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDexInt2"] = { affix = "", "-50% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-50% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt13"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistajcesUniqueStaff10"] = { affix = "", "+(5-7)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-7)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet23"] = { affix = "", "-(10-5)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(10-5)% to all Elemental Resistances" }, } }, - ["AllResistancesDescentUniqueQuiver1"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__1"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__2"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__3"] = { affix = "", "+(14-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-18)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__4"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__5"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__6"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__8"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__9"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__10"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__11__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__12"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__13"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__15"] = { affix = "", "+(12-18)% to all Elemental Resistances", statOrder = { 1624 }, 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 = { 1624 }, 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 = { 1624 }, 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 = { 10715 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4285168237] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__19"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1624 }, 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 = { 1624 }, 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 = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__23__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__24_"] = { affix = "", "-(80-70)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(80-70)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__26"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__27"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__29"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__30"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__31"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__32"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__33"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__34"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__35"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__36"] = { affix = "", "-(50-40)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(50-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__37"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__38"] = { affix = "", "+(-15-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 80, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(-15-15)% to all Elemental Resistances" }, } }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["CriticalMultiplierImplicitSword1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2"] = { affix = "", "+35% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+35% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2H1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSwordM2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitBow1"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDex2"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt2"] = { affix = "", "+30% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+30% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt4"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueHelmetStr3"] = { affix = "", "+60% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+60% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing8"] = { affix = "", "-50% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet17"] = { affix = "", "+(210-240)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 50, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(210-240)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDescentDagger1"] = { affix = "", "+45% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+45% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDagger8"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing17"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt6_"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet18"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2683 }, level = 29, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["CriticalMultiplierUnique__1"] = { affix = "", "+(27-33)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-33)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__2"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__3__"] = { affix = "", "+(25-50)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-50)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__4____"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__5"] = { affix = "", "+(18-35)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-35)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__6"] = { affix = "", "+(100-150)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(100-150)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__7"] = { affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-20)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__8"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["StunRecoveryImplicitBelt1"] = { affix = "", "(15-25)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 20, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(15-25)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex1"] = { affix = "", "20% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetInt6"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex3"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetStrInt4"] = { affix = "", "(20-22)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueGlovesStrInt1"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueQuiver4"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueAmulet18"] = { affix = "", "40% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueClaw8"] = { affix = "", "25% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "25% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueOneHandSword13"] = { affix = "", "(30-40)% reduced Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% reduced Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__1_"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__2"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__3"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__5"] = { affix = "", "100% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "100% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__6"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__7"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__8"] = { affix = "", "(100-200)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(100-200)% increased Stun and Block Recovery" }, } }, - ["StunDurationImplicitBelt1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace1"] = { affix = "", "30% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "30% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace2"] = { affix = "", "45% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "45% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitQuiver9"] = { affix = "", "(25-35)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(25-35)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace1"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace2"] = { affix = "", "(10-20)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(10-20)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace3"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesInt4_"] = { affix = "", "50% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "50% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesDexInt3"] = { affix = "", "10% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "10% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandSword5"] = { affix = "", "400% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "400% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver8"] = { affix = "", "(140-200)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(140-200)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueOneHandMace6"] = { affix = "", "(30-50)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(30-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["SpellCriticalStrikeChanceUniqueDagger1"] = { affix = "", "(80-100)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt5"] = { affix = "", "(75-100)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(75-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt6"] = { affix = "", "(125-150)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(125-150)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueHelmetInt6"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueShieldInt3"] = { affix = "", "(25-35)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(25-35)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "(50-70)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-70)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__1"] = { affix = "", "(100-140)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-140)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__2"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__3"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__4"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__5"] = { affix = "", "(80-120)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-120)% increased Spell Critical Strike Chance" }, } }, - ["ProjectileSpeedImplicitQuiver4New"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1801 }, level = 25, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueAmulet5"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueBow4_"] = { affix = "", "(50-100)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(50-100)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver2"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver4"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver8"] = { affix = "", "25% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "25% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__2"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__3"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__4"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__5__"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__6"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__7"] = { affix = "", "(30-40)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-40)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__8"] = { affix = "", "(30-50)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-50)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueRing2"] = { affix = "", "Gain (2-4) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword1"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDagger2"] = { affix = "", "Grants 10 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 10 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw2"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw3"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw4"] = { affix = "", "Grants 22 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 22 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw2"] = { affix = "", "Grants 6 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 6 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3"] = { affix = "", "Grants 7 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 7 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3_1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4"] = { affix = "", "Grants 12 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 12 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4_1"] = { affix = "", "Grants 19 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 19 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5_1"] = { affix = "", "Grants 20 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 20 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw6"] = { affix = "", "Grants 25 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 25 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw7"] = { affix = "", "Grants 24 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 24 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw8"] = { affix = "", "Grants 44 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 44 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw9_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw10"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw11_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw12"] = { affix = "", "Grants 50 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 50 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw13"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitQuiver3New"] = { affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 18, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetImplicitQuiver8"] = { affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 13, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueSceptre2"] = { affix = "", "Grants (6-10) Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-10) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRapier2"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRing7"] = { affix = "", "Gain (40-60) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (40-60) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueQuiver6_"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword7"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDescentClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUnique__1"] = { affix = "", "Gain 7 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 7 Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__1"] = { affix = "", "Lose (20-25) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Lose (20-25) Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__2"] = { affix = "", "Lose (10-20) Life per Enemy Killed", statOrder = { 1753 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose (10-20) Life per Enemy Killed" }, } }, - ["FireDamagePercentUniqueStaff1_"] = { affix = "", "(70-90)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-90)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueStrHelmet2"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBodyInt4"] = { affix = "", "(25-35)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-35)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueHelmetInt5"] = { affix = "", "50% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "50% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing18"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBelt9a"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing24"] = { affix = "", "(15-25)% increased Fire Damage", statOrder = { 1362 }, level = 14, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-25)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueSceptre9"] = { affix = "", "30% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "30% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueWand10"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing36"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing38"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__4"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___5"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__6"] = { affix = "", "(50-70)% increased Fire Damage", statOrder = { 1362 }, level = 45, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-70)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___7"] = { affix = "", "25% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "25% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__12___"] = { affix = "", "100% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ColdDamagePercentUniqueStaff2"] = { affix = "", "(40-50)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueRing19"] = { affix = "", "(25-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueBelt9b"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__3"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__5"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__6"] = { affix = "", "(20-25)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-25)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__8"] = { affix = "", "30% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "30% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__9"] = { affix = "", "(20-40)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___10"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___11"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["LightningDamageUniqueWand1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamageUniqueHelmetDexInt1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing20"] = { affix = "", "(25-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueBelt9c"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueStaff8"] = { affix = "", "(30-50)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-50)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing29"] = { affix = "", "20% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "20% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing34"] = { affix = "", "(15-25)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-25)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__2"] = { affix = "", "(15-20)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-20)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__3"] = { affix = "", "35% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "35% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__4"] = { affix = "", "100% increased Lightning Damage", statOrder = { 1382 }, level = 40, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "100% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__8"] = { affix = "", "(30-40)% increased Lightning Damage", statOrder = { 1382 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-40)% increased Lightning Damage" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe1"] = { affix = "", "Gain 20 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 20 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (100-200) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (100-200) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBootsStrInt1"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandMace7"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (15-20) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueOneHandAxe3"] = { affix = "", "Gain (5-7) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-7) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1753 }, level = 94, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger11"] = { affix = "", "Gain 5 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 5 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (15-25) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (15-25) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-25) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__4"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__5"] = { affix = "", "Gain 150 Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 150 Life per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBow2"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (50-100) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (50-100) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueRing4"] = { affix = "", "Gain (5-20) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-20) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandSword3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandAxe5"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueShieldInt3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 100 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain 30 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 30 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-40) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-40) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (1-100) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-100) Mana per Enemy Killed" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace1"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword4"] = { affix = "", "(90-110)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(90-110)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDescentDagger1"] = { affix = "", "100% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "100% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger8"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand6_"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueSceptre9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandAxe8_"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff14"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueTwoHandMace6"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalMultiplierUniqueBow3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueClaw2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueDagger4"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueOneHandSword4"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["GlobalSpellGemsLevelUnique__1"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["GlobalColdSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUniqueStaff8"] = { affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+(1-3) to Level of Socketed Lightning Gems" }, } }, - ["LocalIncreaseSocketedChaosGemLevelUnique__1"] = { affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, - ["GlobalVaalGemsLevelImplicit1_"] = { affix = "", "+1 to Level of all Vaal Skill Gems", statOrder = { 10516 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4180346416] = { "+1 to Level of all Vaal Skill Gems" }, } }, - ["LocalIncreaseSocketedProjectileGemLevel1"] = { affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 182 }, level = 1, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevel1"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUniqueWand4"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__2"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 100, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__5"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMeleeSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Melee Skill Gems", statOrder = { 9212 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+(1-3) to Level of all Melee Skill Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__2_"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__3"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__4"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__5____"] = { affix = "", "+3 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Spell Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+2 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff1"] = { affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDagger10"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__2"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedBowGemLevelUniqueBow2"] = { affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 1, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__4"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueRapier1"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff2"] = { affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueSceptre1"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueBodyInt4"] = { affix = "", "+3 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+3 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4"] = { affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___1"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___2___"] = { affix = "", "+5 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+5 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+(3-5) to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+(3-5) to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueClaw5"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing23"] = { affix = "", "+5 to Level of Socketed Gems", statOrder = { 167 }, level = 57, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+5 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing39"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueWand8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique___3"] = { affix = "", "+1 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__6"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__7"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__9"] = { affix = "", "+(5-8) to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(5-8) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__10"] = { affix = "", "+(1-2) to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(1-2) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__11_"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedDexterityGemLevelUniqueClaw8"] = { affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing35"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 208 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing36"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 208 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing37"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 208 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5"] = { affix = "", "+3 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+3 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreasedAccuracyUnique__1"] = { affix = "", "+(330-350) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(330-350) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__2"] = { affix = "", "(15-25)% increased Attack Speed", "+(400-500) to Accuracy Rating", statOrder = { 1418, 2029 }, level = 1, group = "LocalAccuracyRatingAndAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-25)% increased Attack Speed" }, [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__3"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__4"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit1"] = { affix = "", "+45 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+45 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit2"] = { affix = "", "+165 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+165 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit3"] = { affix = "", "+190 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+190 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit4"] = { affix = "", "+240 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+240 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit5"] = { affix = "", "+330 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+330 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit6"] = { affix = "", "+350 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+350 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit8"] = { affix = "", "+460 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+460 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit9"] = { affix = "", "+475 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+475 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit1"] = { affix = "", "+60 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+60 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit2"] = { affix = "", "+120 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+120 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit3"] = { affix = "", "+185 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+185 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit4"] = { affix = "", "+250 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+250 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit5"] = { affix = "", "+305 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+305 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit6"] = { affix = "", "+360 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+360 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit8"] = { affix = "", "+435 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+435 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit9"] = { affix = "", "+470 to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+470 to Accuracy Rating" }, } }, - ["CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["CannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["BlockingBlocksSpellsUniqueAmulet1"] = { affix = "", "15% Chance to Block Spell Damage", statOrder = { 1160 }, level = 7, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "15% Chance to Block Spell Damage" }, } }, - ["BlockingBlocksSpellsUnique__2"] = { affix = "", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(7-9)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueAmulet1"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 7, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__2"] = { affix = "", "(4-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__3_"] = { affix = "", "(16-22)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(16-22)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__4"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUniqueDescentTwoHandSword1"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["BlockRecoveryImplicitShield1"] = { affix = "", "60% increased Block Recovery", statOrder = { 1172 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "60% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield2"] = { affix = "", "120% increased Block Recovery", statOrder = { 1172 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "120% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield3"] = { affix = "", "180% increased Block Recovery", statOrder = { 1172 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "180% increased Block Recovery" }, } }, - ["AlwaysHits"] = { affix = "", "Hits can't be Evaded", statOrder = { 2048 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueTwoHandMace6"] = { affix = "", "Hits can't be Evaded", statOrder = { 2048 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__1"] = { affix = "", "Hits can't be Evaded", statOrder = { 2048 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__2"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2049 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueGlovesDexInt4"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2049 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["HitsCauseMonsterFleeUniqueRing1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2047 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUniqueBootsStrInt1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2047 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUnique__1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2047 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["MaximumEnduranceChargeUniqueRing2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStr3"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStrDex3"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__1_"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__1"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__2"] = { affix = "", "-2 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-2 to Maximum Endurance Charges" }, } }, - ["AddPowerChargeOnCrit1__"] = { affix = "", "Gain a Power Charge for each Enemy you hit with a Critical Strike", statOrder = { 2552 }, level = 1, group = "AddPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1556625719] = { "Gain a Power Charge for each Enemy you hit with a Critical Strike" }, } }, - ["ActorSizeUniqueAmulet2"] = { affix = "", "20% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "20% increased Character Size" }, } }, - ["ActorSizeUniqueHelmetDex6"] = { affix = "", "10% reduced Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueAmulet12"] = { affix = "", "10% reduced Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__2"] = { affix = "", "15% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "15% increased Character Size" }, } }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUnique__4"] = { affix = "", "5% increased Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "5% increased Character Size" }, } }, - ["MaximumManaUniqueBodyStrInt1"] = { affix = "", "50% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "50% reduced maximum Mana" }, } }, - ["MaximumManaUniqueRing5"] = { affix = "", "20% increased maximum Mana", statOrder = { 1585 }, level = 14, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaUniqueTwoHandMace5"] = { affix = "", "25% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% increased maximum Mana" }, } }, - ["MaximumManaUniqueAmulet10"] = { affix = "", "(16-24)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-24)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff5"] = { affix = "", "18% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "18% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff6"] = { affix = "", "(50-100)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(50-100)% increased maximum Mana" }, } }, - ["MaximumManaUnique___2"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["MaximumManaUnique__3"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__5"] = { affix = "", "(9-15)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-15)% increased maximum Mana" }, } }, - ["MaximumManaUnique__6"] = { affix = "", "(6-10)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(6-10)% increased maximum Mana" }, } }, - ["MaximumManaUnique__7"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__8"] = { affix = "", "(16-20)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__10"] = { affix = "", "20% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaImplicitAtlasRing_"] = { affix = "", "(8-10)% increased maximum Mana", statOrder = { 1585 }, level = 100, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["MaximumLifeUniqueOneHandSword2"] = { affix = "", "25% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueAmulet6"] = { affix = "", "20% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBelt4"] = { affix = "", "10% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeShieldInt1"] = { affix = "", "10% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueBodyInt3"] = { affix = "", "10% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueRing16"] = { affix = "", "25% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBodyStrDex1"] = { affix = "", "(30-40)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(30-40)% increased maximum Life" }, } }, - ["MaximumLifeUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueShieldDexInt2"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueGlovesStrInt3"] = { affix = "", "(12-16)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-16)% increased maximum Life" }, } }, - ["MaximumLifeUnique__1"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__3"] = { affix = "", "10% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUnique__4_"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__5"] = { affix = "", "(15-25)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-25)% increased maximum Life" }, } }, - ["MaximumLifeUnique__6"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1576 }, level = 25, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__7"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__10_"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__11"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__12"] = { affix = "", "(4-7)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, - ["MaximumLifeUnique__13"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__14"] = { affix = "", "5% increased maximum Life", statOrder = { 1576 }, level = 62, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "5% increased maximum Life" }, } }, - ["MaximumLifeUnique__15"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__16"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__17"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__18"] = { affix = "", "(7-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__19"] = { affix = "", "(7-12)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__20___"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__21"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__22"] = { affix = "", "(12-15)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__23"] = { affix = "", "24% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "24% reduced maximum Life" }, } }, - ["MaximumLifeUnique__24"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1574 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["MaximumLifeUnique__25"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["MaximumLifeUnique__26"] = { affix = "", "(-17-17)% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(-17-17)% reduced maximum Life" }, } }, - ["MaximumLifeUnique__27"] = { affix = "", "10% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeImplicitAtlasRing"] = { affix = "", "(5-7)% increased maximum Life", statOrder = { 1576 }, level = 100, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace2"] = { affix = "", "20% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace1__"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace2_"] = { affix = "", "15% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDagger1"] = { affix = "", "30% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentStaff1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueQuiver6"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 13, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "20% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDexInt2"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueOneHandMace7"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDex7"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__1"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__2_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__3"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__4_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__5"] = { affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__6"] = { affix = "", "(10-15)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__7_"] = { affix = "", "30% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__8"] = { affix = "", "(15-20)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__9"] = { affix = "", "30% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__10"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["BurnDamageUniqueStaff1"] = { affix = "", "70% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "70% increased Burning Damage" }, } }, - ["BurnDamageUniqueDescentOneHandMace1"] = { affix = "", "25% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "25% increased Burning Damage" }, } }, - ["BurnDamageUniqueRing15"] = { affix = "", "(60-80)% increased Burning Damage", statOrder = { 1882 }, level = 14, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(60-80)% increased Burning Damage" }, } }, - ["BurnDamageUnique__1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, - ["CannotCrit"] = { affix = "", "Never deal Critical Strikes", statOrder = { 2183 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, - ["ManaCostIncreaseUniqueTwoHandAxe4"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreaseUniqueGlovesInt6"] = { affix = "", "(40-80)% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(40-80)% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueWand7"] = { affix = "", "40% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "40% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueHelmetStrInt6"] = { affix = "", "75% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "75% increased Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__1"] = { affix = "", "(6-8)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(6-8)% reduced Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__2_"] = { affix = "", "(10-20)% reduced Mana Cost of Skills", statOrder = { 1888 }, 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 = { 560 }, 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 = { 560 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% reduced Mana Cost" }, } }, - ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["ArsenalOfVengeance"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10806 }, 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 = { 9935 }, 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 = { 9929 }, level = 1, group = "RetaliationSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1531617714] = { "Retaliation Skills deal (50-100)% increased Damage" }, } }, - ["RetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for (50-100)% longer", statOrder = { 9939 }, level = 1, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2547149004] = { "Retaliation Skills become Usable for (50-100)% longer" }, } }, - ["CannotEvade"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1923 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["AdditionalArrowsUniqueBow3"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1799 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUniqueTransformed__1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 55, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1799 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUnique__2"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1799 }, level = 77, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["MinionRunSpeedUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedUniqueWand2"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__1"] = { affix = "", "Minions have 10% reduced Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 10% reduced Movement Speed" }, } }, - ["MinionRunSpeedUnique__2"] = { affix = "", "Minions have (80-100)% increased Movement Speed", statOrder = { 1774 }, level = 48, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (80-100)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__3"] = { affix = "", "Minions have (25-45)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-45)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__4"] = { affix = "", "Minions have (10-20)% increased Movement Speed", statOrder = { 1774 }, level = 78, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-20)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__5"] = { affix = "", "Minions have (40-50)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (40-50)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__6"] = { affix = "", "Minions have (15-25)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-25)% increased Movement Speed" }, } }, - ["MinionLifeUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandSword4"] = { affix = "", "Minions have (30-40)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandMace5"] = { affix = "", "Minions have (20-40)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueBodyInt9"] = { affix = "", "Minions have 20% reduced maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 20% reduced maximum Life" }, } }, - ["MinionLifeUniqueRing33"] = { affix = "", "Minions have 15% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 15% increased maximum Life" }, } }, - ["MinionLifeUnique__1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__2"] = { affix = "", "Minions have (10-20)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-20)% increased maximum Life" }, } }, - ["MinionLifeUnique__3_"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__4__"] = { affix = "", "Minions have 10% reduced maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 10% reduced maximum Life" }, } }, - ["MinionLifeUnique__5_"] = { affix = "", "Minions have (20-40)% reduced maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% reduced maximum Life" }, } }, - ["MinionDamageImplicitHelmet1"] = { affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1978 }, level = 78, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, - ["MinionDamageUniqueAmulet3"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, - ["MinionDamageUniqueWand2"] = { affix = "", "Minions deal (50-70)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-70)% increased Damage" }, } }, - ["MinionDamageUniqueTwoHandSword4"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUniqueBodyInt9"] = { affix = "", "Minions deal 15% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 15% increased Damage" }, } }, - ["MinionDamageUnique__2"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["MinionDamageUnique__3_"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique__5"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUnique__7"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique__8_"] = { affix = "", "Minions deal (40-60)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-60)% increased Damage" }, } }, - ["MinionDamageUnique__9"] = { affix = "", "Minions deal (113-157)% increased Damage", statOrder = { 1978 }, level = 80, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (113-157)% increased Damage" }, } }, - ["MinionDurationUnique__1"] = { affix = "", "(17-31)% increased Minion Duration", statOrder = { 5037 }, level = 80, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-31)% increased Minion Duration" }, } }, - ["MinionPhysicalDamageAsChaosUnique__1"] = { affix = "", "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 9353 }, level = 80, group = "MinionPhysicalDamageAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "minion" }, tradeHashes = { [2656936969] = { "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MinionChaosResistanceUnique___1"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2918 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__2__"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2918 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__3"] = { affix = "", "Minions have +(-17-17)% to Chaos Resistance", statOrder = { 2918 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(-17-17)% to Chaos Resistance" }, } }, - ["MinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +25% Chance to Block Attack Damage" }, } }, - ["MinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2909 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +25% Chance to Block Spell Damage" }, } }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 2178 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 2178 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, - ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltIncreasedFlaskEffectUnique__1"] = { affix = "", "Flasks applied to you have 25% increased Effect", statOrder = { 2747 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 25% increased Effect" }, } }, - ["BeltIncreasedFlaskEffectUnique__2"] = { affix = "", "Flasks applied to you have 60% reduced Effect", statOrder = { 2747 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 60% reduced Effect" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 2188 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 2188 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(15-25)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% increased Flask Charges used" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(7-10)% reduced Flask Charges used" }, } }, - ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__4"] = { affix = "", "150% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "150% increased Flask Effect Duration" }, } }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2192 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(20-30)% reduced Flask Effect Duration" }, } }, - ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__2"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUnique__1"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "30% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__2"] = { affix = "", "100% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "100% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__1"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__2"] = { affix = "", "(1-100)% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(1-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(60-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 2065 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "15% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "25% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "50% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 2194 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "10% reduced Flask Life Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "50% increased Flask Mana Recovery rate" }, } }, - ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(30-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 2188 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "50% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1861 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1861 }, 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 = { 1861 }, 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 = { 1861 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10766 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 72 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1846 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["AttackerTakesDamageUnique_1"] = { affix = "", "Reflects (200-300) Physical Damage to Melee Attackers", statOrder = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, 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 = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2208 }, 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 = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 2202 }, 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 = { 2239 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10799 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "25% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1842 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1842 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1842, 1843 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1842, 1843 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1891 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [73272763] = { "20% reduced Mana Cost of Skills when on Low Life" }, } }, - ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1627 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1637928656] = { "+20% to all Elemental Resistances while on Low Life" }, } }, - ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1550 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3470876581] = { "+(150-250) to Evasion Rating while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of Life per second while on Low Life", statOrder = { 1950 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of Life per second while on Low Life", statOrder = { 1950 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of Life per second while on Low Life", statOrder = { 1950 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of Life per second while on Low Life" }, } }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1604 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "40% reduced Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "20% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(10-20)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "20% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "15% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "10% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1804 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(6-8)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "30% increased Movement Speed when on Full Life" }, } }, - ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, - ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "100% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1227 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "30% increased Attack Speed when on Full Life" }, } }, - ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1227 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10774 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-2 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-3 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(50-40) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(18-14) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(60-30) Physical Damage taken from Attack Hits" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__10"] = { affix = "", "+(3-8)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-8)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__11"] = { affix = "", "+15% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+15% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__12"] = { affix = "", "+(1-10)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__13"] = { affix = "", "+(5-10)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-10)% Chance to Block" }, } }, - ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1161 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4070519133] = { "36% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(21-24)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "30% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldInt4"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1150 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+30% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, tradeHashes = { [561307714] = { "(15-20)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-10)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1634 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to maximum Cold Resistance", statOrder = { 1634 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__2"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, - ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to maximum Fire Resistance" }, } }, - ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to maximum Lightning Resistance" }, } }, - ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 2208 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects (25-50) Cold Damage to Melee Attackers" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical Damage taken from Projectile Attacks", statOrder = { 2251 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-25 Physical Damage taken from Projectile Attacks" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical Damage taken from Projectile Attacks", statOrder = { 2251 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-(80-50) Physical Damage taken from Projectile Attacks" }, } }, - ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Strike", statOrder = { 1833 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Strike" }, } }, - ["DisableOffhandSlot"] = { affix = "", "Uses both hand slots", statOrder = { 1079 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["DisableOffHandSlotUnique__1"] = { affix = "", "Uses both hand slots", statOrder = { 1079 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block Attack Damage", statOrder = { 2263 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, } }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1647 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1647 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+(1-4)% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1647 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1634 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 10 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 15 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 5 Concentrated Effect" }, } }, - ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3265951306] = { "Socketed Gems are Supported by Level 10 Fire Penetration" }, } }, - ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 468 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 10 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 468 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 5 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 468 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, - ["ShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2265 }, level = 1, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "Share Endurance Charges with nearby party members" }, } }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Strike", statOrder = { 1840 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Strike" }, } }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2268 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "10% chance to Blind Enemies on hit" }, } }, - ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 475 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 475 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 30 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 475 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 6 Blind" }, } }, - ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 475 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, - ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 1879 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "80% reduced Freeze Duration on you" }, } }, - ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 1879 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, - ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-1000)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2441 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-1000)% more Physical Damage with Unarmed Melee Attacks" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 363 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 15 Pulverise" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 229 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 229 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 5 Increased Area of Effect" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 416 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["EnemiesCantLifeLeech"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2445 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["UniqueEnemiesCantLifeLeech__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2445 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10855 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 84 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3146680230] = { "Has one socket of each colour" }, } }, - ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+12% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+8% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+5% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, 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 = { 1167 }, 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 = { 1620, 1621 }, 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 = { 2165, 2166, 9536 }, 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 = { 2165, 2166, 2167 }, 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 = { 2166 }, 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 = { 9536 }, 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 = { 2167 }, 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 = { 2166 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2166 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 532 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 532 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 532 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 540 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3418772] = { "Socketed Gems have 10% chance to cause Enemies to Flee on Hit" }, } }, - ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 2205 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, - ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 2205 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 150 Lightning Damage to Melee Attackers" }, } }, - ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, 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 = { 1967 }, 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 = { 1967 }, 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 = { 5047 }, 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 = { 2165, 2166, 9536 }, 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 = { 2165, 2166, 2167 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 1081, 2444 }, 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 = { 163 }, 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 = { 2515 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1119465199] = { "Chaos Damage taken does not bypass Energy Shield" }, } }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "25% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2447 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2749166636] = { "50% more Damage with Arrow Hits at Close Range" }, } }, - ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2449 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3261557635] = { "Bow Knockback at Close Range" }, } }, - ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, - ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(16-22)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-10)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1864 }, 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 = { 2452 }, 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 = { 2452 }, 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 = { 2209 }, 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 = { 2209 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, - ["AttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2208 }, 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 = { 2210 }, 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 = { 1844 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1844 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 2003 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(10-15)% increased Physical Damage with Ranged Weapons" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 2003 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(75-150)% increased Physical Damage with Ranged Weapons" }, } }, - ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2462 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "1000% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% Chance to Block Attack Damage", statOrder = { 2463 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, - ["AdditionalBlockUnique__2"] = { affix = "", "15% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "15% Chance to Block Attack Damage" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4995 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1796 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1796 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Leech Energy Shield instead of Life", statOrder = { 7341 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3346092312] = { "Leech Energy Shield instead of Life" }, } }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1168 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, - ["ArmourPercent VsProjectilesUniqueShieldStr2"] = { affix = "", "200% increased Armour against Projectiles", statOrder = { 2468 }, level = 1, group = "ArmourPercentVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [706246936] = { "200% increased Armour against Projectiles" }, } }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2470 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 533 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 533 }, 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 = { 533 }, 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 = { 533 }, 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 = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2466 }, 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 = { 2466 }, 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 = { 1085 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 1085 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, - ["LocalInflictHallowingFlameOnHitUnique__1"] = { affix = "", "Attacks with this weapon inflict Hallowing Flame on Hit", statOrder = { 68 }, level = 1, group = "LocalInflictHallowingFlameOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [254952564] = { "Attacks with this weapon inflict Hallowing Flame on Hit" }, } }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+257 Intelligence Requirement" }, } }, - ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 15 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 463 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 25 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 29 Added Chaos Damage" }, } }, - ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2473 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2474 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1784 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 1091 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 1091 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 1091 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 1091 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 1091 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 1090 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 1090 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 1090 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 1090 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, - ["StrengthRequirementsUnique__4"] = { affix = "", "+100 Strength Requirement", statOrder = { 1090 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUnique_1"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 1082 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 1089 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4272453892] = { "+600 Strength and Intelligence Requirement" }, } }, - ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2476 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3557561376] = { "100% increased Spell Damage taken when on Low Mana" }, } }, - ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1551 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1000 to Evasion Rating while on Full Life" }, } }, - ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1551 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, - ["ReflectCurses"] = { affix = "", "Hex Reflection", statOrder = { 2481 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Hex Reflection" }, } }, - ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2487 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [20157668] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Strike", statOrder = { 7868 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Strike" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7878 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2484 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2500 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 2179 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2150 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AuraEffectUnique__1"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2150 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1196 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1197 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1197 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1197 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2505 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__1"] = { affix = "", "(15-20)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-20)% increased Light Radius" }, } }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__9"] = { affix = "", "25% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUnique__10"] = { affix = "", "50% reduced Light Radius", statOrder = { 2505 }, level = 100, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__11"] = { affix = "", "50% increased Light Radius", statOrder = { 2505 }, 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 = { 2526 }, 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 = { 2516 }, 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 = { 6922 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, [1208949000] = { "" }, [3568390883] = { "" }, [640757053] = { "" }, } }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2537 }, 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 = { 2540 }, 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 = { 2542 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__1"] = { affix = "", "(-15-15)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(-15-15)% reduced Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__3"] = { affix = "", "(10-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 20, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(10-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__5"] = { affix = "", "(5-10)% increased Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(5-10)% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__6"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__7"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__8"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__9"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__10"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1632 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1852 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4271082039] = { "100% chance to Avoid being Ignited while on Low Life" }, } }, - ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 471 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 5 Elemental Proliferation" }, } }, - ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 471 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, - ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1900 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3852526385] = { "+5 to Level of Socketed Movement Gems" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2551 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+2% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1561 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "10% increased Evasion Rating per Frenzy Charge" }, } }, - ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2548 }, level = 1, group = "WeaponPhysicalDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 2549 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Physical Weapon Damage per 10 Strength", statOrder = { 2550 }, level = 1, group = "IncreasedAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2594215131] = { "16% increased Physical Weapon Damage per 10 Strength" }, } }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 2132 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "40% reduced Frenzy Charge Duration" }, } }, - ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 2132 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "20% reduced Frenzy Charge Duration" }, } }, - ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 2259 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1779 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1779 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(14-20)% increased Totem Life" }, } }, - ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1779 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, - ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 465 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2091466357] = { "Socketed Gems are Supported by Level 10 Increased Duration" }, } }, - ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Hex on you when your Totems die", statOrder = { 2556 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Hex on you when your Totems die" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 472 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 18 Added Lightning Damage" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 472 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7436 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7436 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration on Enemies" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7436 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__3"] = { affix = "", "25% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "25% increased Shock Duration on Enemies" }, } }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 2246 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 2246 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 2246 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 1080 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1"] = { affix = "", "400% increased Attribute Requirements", statOrder = { 1080 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "400% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 1080 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Strike Multiplier", statOrder = { 1507 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Strike Multiplier" }, } }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1610 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Items and Gems have 25% reduced Attribute Requirements", statOrder = { 2557 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 25% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Items and Gems have 10% increased Attribute Requirements", statOrder = { 2557 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 10% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Items and Gems have 100% reduced Attribute Requirements", statOrder = { 2557 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 100% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Items and Gems have 50% increased Attribute Requirements", statOrder = { 2557 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 50% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__3"] = { affix = "", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2557 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "60% reduced Effect of Curses on you" }, } }, - ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% increased Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__2"] = { affix = "", "80% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "80% reduced Effect of Curses on you" }, } }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 30 Mana per Enemy Hit with Attacks" }, } }, - ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1750 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 30 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1750 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants (2-3) Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1750 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__3"] = { affix = "", "Gain (5-10) Mana per Enemy Killed", statOrder = { 1768 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-10) Mana per Enemy Killed" }, } }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 10 Chance to Flee" }, } }, - ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2559 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1252481812] = { "Emits a golden glow" }, } }, - ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2560 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, - ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2558 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482008875] = { "Enemy hits on you roll low Damage" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 30 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 12 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 13 Faster Attacks" }, } }, - ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 15 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 473 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 30 Melee Physical Damage" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 2129 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "20% chance to gain an Endurance Charge when you Block" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 2129 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "50% chance to gain an Endurance Charge when you Block" }, } }, - ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2561 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6424 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6424 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6383 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, - ["EnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6382 }, level = 98, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2563 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524282232] = { "Item drops on death" }, } }, - ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2562 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2528932950] = { "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge" }, } }, - ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 2211 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, - ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 2147 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 2147 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "30% reduced Power Charge Duration" }, } }, - ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 2147 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(80-100)% increased Power Charge Duration" }, } }, - ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 2145 }, 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 = { 2145 }, 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 = { 2145 }, 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 = { 2578 }, 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 = { 2579 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, [3161959833] = { "" }, [2544633803] = { "" }, [800117438] = { "" }, } }, - ["DisableChestSlot"] = { affix = "", "Can't use Chest armour", statOrder = { 2588 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Chest armour" }, } }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 218 }, 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 = { 218 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+2 to Level of Socketed Elemental Gems" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2576 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-20) Energy Shield per Enemy Killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2576 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per Enemy Killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per Enemy Hit with Attacks", statOrder = { 1752 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (15-25) Energy Shield per Enemy Hit with Attacks" }, } }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2589 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1081444608] = { "100% increased Claw Physical Damage when on Low Life" }, } }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5793 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, - ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2590 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [347697569] = { "100% increased Accuracy Rating when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "30% increased Attack Speed when on Low Life" }, } }, - ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2754 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1425651005] = { "20% reduced Damage taken from Projectile Hits" }, } }, - ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2554 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [993866933] = { "You cannot increase the Rarity of Items found" }, } }, - ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2555 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778266957] = { "You cannot increase the Quantity of Items found" }, } }, - ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2681 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2776725787] = { "You cannot be killed by reflected Elemental Damage" }, } }, - ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 3000 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 3000 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1185 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(16-24) to Strength and Dexterity" }, } }, - ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1186 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(16-24) to Strength and Intelligence" }, } }, - ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1187 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(16-24) to Dexterity and Intelligence" }, } }, - ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(30-50) to Strength and Dexterity" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2539 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+1 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 2130 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 2130 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(20-30)% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "33% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "15% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "25% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "30% chance to gain a Frenzy Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "15% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(25-35)% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "30% chance to gain a Power Charge on Kill" }, } }, - ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "30% chance to gain an Endurance Charge on Kill" }, } }, - ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2641 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1791875585] = { "Gain an Endurance Charge when you lose a Power Charge" }, } }, - ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2596 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1194648995] = { "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield" }, } }, - ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2643 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3579807004] = { "60% increased Melee Damage when on Full Life" }, } }, - ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Strike", statOrder = { 2644 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Strike" }, } }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2645 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3159161267] = { "5% increased Projectile Speed per Frenzy Charge" }, } }, - ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2646 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "5% increased Projectile Damage per Power Charge" }, } }, - ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2653 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [783864527] = { "Right ring slot: You cannot Regenerate Mana" }, } }, - ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of Energy Shield per second", statOrder = { 2654 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of Energy Shield per second" }, } }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2665 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [195090426] = { "Left ring slot: 100% increased Mana Regeneration Rate" }, } }, - ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2658 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4263540840] = { "Left ring slot: You cannot Recharge or Regenerate Energy Shield" }, } }, - ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, 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 = { 2651 }, 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 = { 2650 }, 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 = { 10814 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["LifeLeechAnyDamageUnique__1"] = { affix = "", "1% of Damage Leeched as Life", statOrder = { 1666 }, 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 = { 2647 }, 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 = { 2648 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2648 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 3 seconds on Kill" }, } }, - ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 2053 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, - ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of Life per second per Frenzy Charge", statOrder = { 2633 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of Life per second per Frenzy Charge" }, } }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2815 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1696792323] = { "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life" }, } }, - ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1844 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2632 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "30% increased Movement Speed while Cursed" }, } }, - ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1144 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+10% Chance to Block Attack Damage while holding a Shield" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2591 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 240 to 300 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2591 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 8 to 14 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2591 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 4 to 8 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2591 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 1000 to 10000 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2591 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects (22-44) Physical Damage to Attackers on Block" }, } }, - ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1762 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(34-48) Life gained when you Block" }, } }, - ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1763 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(18-24) Mana gained when you Block" }, } }, - ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1763 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(30-50) Mana gained when you Block" }, } }, - ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2594 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4116579804] = { "Raised Zombies have +5000 to maximum Life" }, } }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10754 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, - ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2595 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, - ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2685 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3563667308] = { "25% increased Raised Zombie Size" }, } }, - ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2687 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, - ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2593 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4041805509] = { "50% reduced maximum number of Raised Zombies" }, } }, - ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2597 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4207939995] = { "2% increased Intelligence for each Unique Item Equipped" }, } }, - ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2600 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2920230984] = { "3% chance for Slain monsters to drop an additional Scroll of Wisdom" }, } }, - ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1973 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "40% of Cold Damage Converted to Fire Damage" }, } }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2598 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, - ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Strike", statOrder = { 2684 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Strike" }, } }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2683 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2692 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [185598681] = { "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value" }, } }, - ["ConvertFireToChaosUniqueBodyInt4"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1976 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1975 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1976 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1975 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2680 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2884 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2884 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2699 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3304763863] = { "15% increased Quantity of Items Dropped by Slain Frozen Enemies" }, } }, - ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2701 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, - ["ManaLeechPerPowerChargeUniqueBelt5"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana per Power Charge", statOrder = { 1724 }, level = 88, group = "ManaLeechPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3394240821] = { "1% of Physical Attack Damage Leeched as Mana per Power Charge" }, } }, - ["ManaLeechPermyriadPerPowerChargeUniqueBelt5_"] = { affix = "", "0.2% of Attack Damage Leeched as Mana per Power Charge", statOrder = { 8187 }, level = 88, group = "ManaLeechPermyriadPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2628721358] = { "0.2% of Attack Damage Leeched as Mana per Power Charge" }, } }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (49-98) to (101-140) Chaos Damage" }, } }, - ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (60-68) to (90-102) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds 1 to 59 Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-67) to (71-89) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos Damage", statOrder = { 1395 }, 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 = { 1395 }, 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 = { 2703 }, 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 = { 2698 }, 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 = { 10852 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2697 }, 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 = { 2697 }, 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 = { 10852 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10858 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10852 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, 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 = { 1993 }, 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 = { 1993 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumSpellBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Spell Damage", statOrder = { 1994 }, level = 1, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "-10% to maximum Chance to Block Spell Damage" }, } }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2569 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, - ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2573 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2573 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["EnemiesCannotLeechMana"] = { affix = "", "Enemies Cannot Leech Mana From you", statOrder = { 2446 }, level = 1, group = "EnemiesCannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293245253] = { "Enemies Cannot Leech Mana From you" }, } }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2575 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1239 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(16-20)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10792 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2705 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (150-200) to (330-400) Fire Damage in Main Hand", statOrder = { 1368 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (150-200) to (330-400) Fire Damage in Main Hand" }, } }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1368 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, - ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (151-199) to (331-401) Chaos Damage in Off Hand", statOrder = { 1396 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (151-199) to (331-401) Chaos Damage in Off Hand" }, } }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1377 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2109066258] = { "Adds (255-285) to (300-330) Cold Damage in Off Hand" }, } }, - ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2875 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2875 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10509 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7947 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7947 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2711 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage" }, } }, - ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 499 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, - ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, - ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, - ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2717 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 7983, 7983.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 = { 8010, 8010.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 = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["DamageCannotBeReflectedUnique__2"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2986 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 25% Fire Resistance" }, } }, - ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2760 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1305605911] = { "Removes Burning when you use a Flask" }, } }, - ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "30% of Damage is taken from Mana before Life" }, } }, - ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "50% chance to Shock" }, } }, - ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-10)% chance to Shock" }, } }, - ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2849 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2850 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2853 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2742 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2449668043] = { "8% increased Spell Damage per 5% Chance to Block Attack Damage" }, } }, - ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (15-20) Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Lose (10-15) Life per Enemy Hit with Spells" }, } }, - ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2726 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [250876318] = { "12% increased Global Attack Speed per Green Socket" }, } }, - ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2723 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, - ["ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2731 }, level = 1, group = "ManaLeechFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1390269837] = { "2% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2732 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2732 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+0.2 metres to Melee Strike Range per White Socket", statOrder = { 2737 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2076080860] = { "+0.2 metres to Melee Strike Range per White Socket" }, } }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2753 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2626398389] = { "60% increased Damage taken from Melee Attacks" }, } }, - ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2837 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [3002650433] = { "Regenerate 2% of your Armour as Life over 1 second when you Block" }, } }, - ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your Energy Shield when you Block", statOrder = { 2744 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your Energy Shield when you Block" }, } }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (40-60)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (30-40)% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2772 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2919089822] = { "25% chance to Ignite when in Main Hand" }, } }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2773 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, - ["BurningDamageToChilledEnemiesUniqueOneHandAxe2"] = { affix = "", "100% increased Damage with Ignite inflicted on Chilled Enemies", statOrder = { 7208 }, 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 = { 1932 }, 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 = { 1932 }, 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 = { 2777 }, 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 = { 2777 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1180565017] = { "15% increased Movement Speed for 0 seconds on Throwing a Trap" }, [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 459 }, 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 = { 459 }, 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 = { 459 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 16 Trap" }, } }, - ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1928 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, - ["ChanceToFreezeShockIgniteUniqueRing21"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueDescentWand1"] = { affix = "", "4% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "4% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueHelmetDexInt4"] = { affix = "", "5% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "5% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueAmulet19"] = { affix = "", "Always Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "Always Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteDescentUniqueQuiver1"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__1"] = { affix = "", "(10-25)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(10-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__2"] = { affix = "", "(20-25)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(20-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__3"] = { affix = "", "(5-10)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["DamageWhileIgnitedUniqueRing18"] = { affix = "", "30% increased Damage while Ignited", statOrder = { 2807 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "30% increased Damage while Ignited" }, } }, - ["DamageWhileIgnitedUnique__1"] = { affix = "", "(50-70)% increased Damage while Ignited", statOrder = { 2807 }, level = 85, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "(50-70)% increased Damage while Ignited" }, } }, - ["ArmourWhileFrozenUniqueRing18"] = { affix = "", "+5000 to Armour while Frozen", statOrder = { 2808 }, level = 1, group = "ArmourWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [504366827] = { "+5000 to Armour while Frozen" }, } }, - ["ManaLeechOnShockedEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Shocked Enemies Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1831556341] = { "5% of Damage against Shocked Enemies Leeched as Mana" }, } }, - ["ManaLeechPermyriadOnShockedEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Mana against Frozen Enemies", statOrder = { 8189 }, level = 1, group = "ManaLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2908111053] = { "1% of Damage Leeched as Mana against Frozen Enemies" }, } }, - ["EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Energy Shield against Frozen Enemies", statOrder = { 6444 }, level = 1, group = "EnergyShieldLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4091709362] = { "1% of Damage Leeched as Energy Shield against Frozen Enemies" }, } }, - ["LifeLeechOnFrozenEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1694 }, level = 1, group = "LifeLeechOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210079745] = { "5% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1693 }, level = 1, group = "LifeLeechPermyriadOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["DamageOnRareMonstersUniqueBelt7"] = { affix = "", "(20-30)% increased Damage with Hits against Rare monsters", statOrder = { 2812 }, level = 1, group = "DamageOnRareMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2137878565] = { "(20-30)% increased Damage with Hits against Rare monsters" }, } }, - ["DamageOnMagicMonstersUnique__1_"] = { affix = "", "(20-30)% increased Damage with Hits against Magic monsters", statOrder = { 6076 }, level = 1, group = "DamageOnMagicMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1278047991] = { "(20-30)% increased Damage with Hits against Magic monsters" }, } }, - ["DamagePerStatusAilmentOnEnemiesUniqueRing21"] = { affix = "", "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy", statOrder = { 6298, 6298.1 }, level = 1, group = "DamagePerStatusAilmentOnEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2605663324] = { "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy" }, } }, - ["ShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "75% increased Effect of Shrine Buffs on you", statOrder = { 2817 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "75% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineBuffEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Shrine Buffs on you", statOrder = { 2817 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(50-75)% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineEffectDurationUniqueHelmetDexInt3"] = { affix = "", "50% increased Duration of Shrine Effects on you", statOrder = { 2818 }, level = 1, group = "ShrineEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1877661946] = { "50% increased Duration of Shrine Effects on you" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueRing20"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2819 }, level = 25, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2819 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUniqueRing20"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2820 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUnique__1"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2820 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["GainRareMonsterModsOnKillUniqueBelt7_"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2822 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you Kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["GainMagicMonsterModsOnKillUnique__1_"] = { affix = "", "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6772 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976991498] = { "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["GainShrineOnRareOrUniqueKillUnique_1"] = { affix = "", "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6825 }, level = 81, group = "GainShrineOnRareOrUniqueKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3493440964] = { "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["GainManaPer2IntelligenceUnique_1"] = { affix = "", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9175 }, level = 1, group = "ManaPer2Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, - ["AddedManaRegenerationUniqueBelt8"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUniqueDescentWand1"] = { affix = "", "Regenerate 2 Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 2 Mana per second" }, } }, - ["AddedManaRegenerationUnique__1"] = { affix = "", "Regenerate (3-6) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-6) Mana per second" }, } }, - ["AddedManaRegenerationUnique__2"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUnique__3"] = { affix = "", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["ArmourWhileNotIgnitedFrozenShockedBelt8"] = { affix = "", "40% increased Armour while not Ignited, Frozen or Shocked", statOrder = { 2823 }, 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 = { 10795 }, 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 = { 1625 }, 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 = { 2828 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["CastSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "9% increased Cast Speed when on Full Life", statOrder = { 2005 }, 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 = { 2004 }, 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 = { 2752 }, level = 1, group = "MaximumCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2251704631] = { "50% maximum Critical Strike Chance" }, } }, - ["DamagePerStrengthInMainHandUniqueSceptre6"] = { affix = "", "1% increased Damage per 8 Strength when in Main Hand", statOrder = { 2781 }, level = 1, group = "DamagePerStrengthInMainHand", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [679194784] = { "1% increased Damage per 8 Strength when in Main Hand" }, } }, - ["ArmourPerStrengthInOffHandUniqueSceptre6"] = { affix = "", "1% increased Armour per 16 Strength when in Off Hand", statOrder = { 2782 }, level = 1, group = "ArmourPerStrengthInOffHand", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2192181096] = { "1% increased Armour per 16 Strength when in Off Hand" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueSceptre6"] = { affix = "", "Socketed Gems are Supported by Level 30 Iron Will", statOrder = { 506 }, level = 1, group = "DisplaySocketedGemsSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [906997920] = { "Socketed Gems are Supported by Level 30 Iron Will" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3"] = { affix = "", "Socketed Gems have Iron Will", statOrder = { 544 }, level = 1, group = "DisplaySocketedGemsHaveIronWill", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [49017695] = { "Socketed Gems have Iron Will" }, } }, - ["LessCriticalStrikeChanceAmulet17"] = { affix = "", "40% less Critical Strike Chance", statOrder = { 2830 }, level = 1, group = "CriticalStrikeChanceFinal", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4181057577] = { "40% less Critical Strike Chance" }, } }, - ["ChanceToDodgeUniqueBootsDex7"] = { affix = "", "+12% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+12% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1"] = { affix = "", "+50% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+50% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueRing37"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["ChanceToDodgeUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUniqueBodyDex1"] = { affix = "", "+30% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+30% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__2"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+20% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__3_"] = { affix = "", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1_"] = { affix = "", "+(26-32)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(26-32)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__2"] = { affix = "", "+(20-25)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-25)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__3"] = { affix = "", "+(0-30)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 50, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(0-30)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__4"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["EnduranceChargeOnKillUniqueBodyStrDex3"] = { affix = "", "You gain an Endurance Charge on Kill", statOrder = { 2833 }, level = 1, group = "EnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2064503808] = { "You gain an Endurance Charge on Kill" }, } }, - ["LoseEnduranceChargesWhenHitUniqueBodyStrDex3"] = { affix = "", "You lose all Endurance Charges when Hit", statOrder = { 2831 }, level = 1, group = "LoseEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2994477068] = { "You lose all Endurance Charges when Hit" }, } }, - ["GainOnslaughtWhenHitUniqueBodyStrDex3"] = { affix = "", "You gain Onslaught for 5 seconds per Endurance Charge when Hit", statOrder = { 2847 }, level = 1, group = "GainOnslaughtWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714207489] = { "You gain Onslaught for 5 seconds per Endurance Charge when Hit" }, } }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2836 }, level = 1, group = "LeechLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2826 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3445 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 2247 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "10% increased Fire Damage taken" }, } }, - ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 2242 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(200-100) Fire Damage taken from Hits" }, } }, - ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2842 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3598983877] = { "Gain a Frenzy Charge if an Attack Ignites an Enemy" }, } }, - ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2841 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, - ["CullingAgainstFrozenEnemiesUnique__1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 5994 }, level = 1, group = "CullingAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2664667514] = { "Culling Strike against Frozen Enemies" }, } }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2844 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(40-30) Chaos Damage taken" }, } }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 189 }, 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 = { 189 }, 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 = { 189 }, 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 = { 2856, 2856.1 }, level = 82, group = "PoisonSpreadAndHealOnPoisonedKill", weightKey = { }, weightVal = { }, modTags = { "poison", "resource", "life", "chaos", "ailment" }, tradeHashes = { [456916387] = { "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres" }, [1168603868] = { "" }, } }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 2176 }, 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 = { 2176 }, 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 = { 3306 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2840 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [85576425] = { "Elemental Resistances are Zero" }, } }, - ["AllDefencesUniqueHelmetStrInt4_"] = { affix = "", "(18-22)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(18-22)% increased Global Defences" }, } }, - ["AllDefencesVictorAmulet"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["AllDefencesUnique__2"] = { affix = "", "100% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__3"] = { affix = "", "100% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__4"] = { affix = "", "(15-20)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-20)% increased Global Defences" }, } }, - ["AllDefencesUnique__5"] = { affix = "", "(10-15)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(10-15)% increased Global Defences" }, } }, - ["DodgeImplicitMarakethSword1"] = { affix = "", "15% chance to Maim on Hit", statOrder = { 7993 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["DodgeImplicitMarakethSword2"] = { affix = "", "20% chance to Maim on Hit", statOrder = { 7993 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "20% chance to Maim on Hit" }, } }, - ["AllDefensesImplicitJetRing"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["LightningDamageOnBlockUniqueHelmetStrInt4"] = { affix = "", "Reflects 1 to (180-220) Lightning Damage to Attackers on Block", statOrder = { 2592 }, level = 1, group = "LightningDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1810011556] = { "Reflects 1 to (180-220) Lightning Damage to Attackers on Block" }, } }, - ["DuplicatesRingStats"] = { affix = "", "Reflects opposite Ring", statOrder = { 2858 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, - ["DegenerationDamageUniqueDagger8"] = { affix = "", "30% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "30% increased Damage over Time" }, } }, - ["DegenerationDamageEssence_1"] = { affix = "", "(14-20)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-20)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__1"] = { affix = "", "25% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "25% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__2"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__3"] = { affix = "", "(30-40)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(30-40)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__5"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageImplicit1"] = { affix = "", "(14-18)% increased Damage over Time", statOrder = { 1215 }, level = 85, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-18)% increased Damage over Time" }, } }, - ["FishingExoticFishUniqueFishingRod1"] = { affix = "", "You can catch Exotic Fish", statOrder = { 2859 }, level = 1, group = "FishingExoticFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1471580517] = { "You can catch Exotic Fish" }, } }, - ["FireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2861 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Your Fire Damage can Shock but not Ignite" }, } }, - ["ColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2862 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Your Cold Damage can Ignite but not Freeze or Chill" }, } }, - ["LightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2863 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Your Lightning Damage can Freeze but not Shock" }, } }, - ["SocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 543 }, level = 1, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [32859524] = { "Hexes applied by Socketed Curse Skills are Reflected back to you" }, } }, - ["ChillImmunityWhenChilledUniqueGlovesStrInt1"] = { affix = "", "You cannot be Chilled for 3 seconds after being Chilled", statOrder = { 2898 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 3 seconds after being Chilled" }, } }, - ["FreezeImmunityWhenFrozenUniqueGlovesStrInt1"] = { affix = "", "You cannot be Frozen for 3 seconds after being Frozen", statOrder = { 2900 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 3 seconds after being Frozen" }, } }, - ["IgniteImmunityWhenIgnitedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Ignited for 3 seconds after being Ignited", statOrder = { 2901 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 3 seconds after being Ignited" }, } }, - ["ShockImmunityWhenShockedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Shocked for 3 seconds after being Shocked", statOrder = { 2902 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 3 seconds after being Shocked" }, } }, - ["GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1"] = { affix = "", "You grant (4-6) Frenzy Charges to allies on Death", statOrder = { 2904 }, level = 1, group = "GrantFrenzyChargesToAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2105456174] = { "You grant (4-6) Frenzy Charges to allies on Death" }, } }, - ["PowerChargeOnNonCritUniqueRing17"] = { affix = "", "Gain a Power Charge on Non-Critical Strike", statOrder = { 2905 }, level = 1, group = "PowerChargeOnNonCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1592029809] = { "Gain a Power Charge on Non-Critical Strike" }, } }, - ["ConsumeAllPowerChargesOnCritUniqueRing17"] = { affix = "", "Lose all Power Charges on Critical Strike", statOrder = { 2906 }, level = 75, group = "ConsumeAllPowerChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2735889191] = { "Lose all Power Charges on Critical Strike" }, } }, - ["CastSocketedLightningSpellsOnHit"] = { affix = "", "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered", statOrder = { 831, 831.1 }, level = 1, group = "CastSocketedLightningSpellsOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [654971543] = { "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered" }, } }, - ["UndyingBreathCurseAuraDisplayUniqueStaff5"] = { affix = "", "Nearby Enemies have 18% increased Effect of Curses on them", statOrder = { 2706 }, level = 1, group = "UndyingBreathCurseAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "caster", "aura", "curse" }, tradeHashes = { [443525707] = { "Nearby Enemies have 18% increased Effect of Curses on them" }, } }, - ["UndyingBreathDamageAuraDisplayUniqueStaff5"] = { affix = "", "Nearby allies gain 18% increased Damage", statOrder = { 2911 }, level = 1, group = "UndyingBreathDamageAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3175679225] = { "Nearby allies gain 18% increased Damage" }, } }, - ["CurseAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "18% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUniqueQuiver5"] = { affix = "", "40% reduced Area of Effect of Hex Skills", statOrder = { 2230 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "40% reduced Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__1"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__2_"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 76, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__3"] = { affix = "", "50% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "50% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__4"] = { affix = "", "(25-50)% reduced Area of Effect of Hex Skills", statOrder = { 2230 }, level = 40, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-50)% reduced Area of Effect of Hex Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "18% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_1"] = { affix = "", "15% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 97, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "15% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_2"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_3"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_4"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_5"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_6"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4601, 4601.1 }, level = 53, group = "ColdDamageAppliesToColdAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "aura" }, tradeHashes = { [935686778] = { "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4607, 4607.1 }, level = 53, group = "LightningDamageAppliesToLightningAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "aura" }, tradeHashes = { [232010308] = { "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["FireDamageModsApplyToFireAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4603, 4603.1 }, level = 53, group = "FireDamageAppliesToFireAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [1320057994] = { "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4610, 4610.1 }, level = 53, group = "PhysicalDamageAppliesToPhysicalAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "physical", "aura" }, tradeHashes = { [1092506510] = { "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4600, 4600.1 }, level = 53, group = "ChaosDamageAppliesToChaosAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "chaos", "aura" }, tradeHashes = { [2628865242] = { "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["DamageTakenUniqueStaff5"] = { affix = "", "18% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "18% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectGlobalUnique__1"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "2% increased Attack Speed per Frenzy Charge", statOrder = { 2054 }, level = 1, group = "AttackSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3548561213] = { "2% increased Attack Speed per Frenzy Charge" }, } }, - ["AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "6% increased Accuracy Rating per Frenzy Charge", statOrder = { 2055 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "6% increased Accuracy Rating per Frenzy Charge" }, } }, - ["FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "10% reduced Frenzy Charge Duration per Frenzy Charge", statOrder = { 2056 }, level = 1, group = "FrenzyChargeDurationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2543931078] = { "10% reduced Frenzy Charge Duration per Frenzy Charge" }, } }, - ["PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9682 }, level = 1, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3504652942] = { "+5% to Damage over Time Multiplier for Poison per Frenzy Charge" }, } }, - ["AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5"] = { affix = "", "While at maximum Frenzy Charges, Attacks Poison Enemies", statOrder = { 2057 }, level = 1, group = "AtMaximumFrenzyChargesPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [413362507] = { "While at maximum Frenzy Charges, Attacks Poison Enemies" }, } }, - ["AtMaximumFrenzyChargesChanceToPoisonUnique_1_"] = { affix = "", "Attacks have 60% chance to Poison while at maximum Frenzy Charges", statOrder = { 2058 }, level = 1, group = "AtMaximumFrenzyChargesChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3654074125] = { "Attacks have 60% chance to Poison while at maximum Frenzy Charges" }, } }, - ["NecromanticAegisUniqueHelmetStrDex5"] = { affix = "", "All bonuses from an Equipped Shield apply to your Minions instead of you", statOrder = { 2197 }, level = 1, group = "NecromanticAegis", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2739284880] = { "All bonuses from an Equipped Shield apply to your Minions instead of you" }, } }, - ["MinionBlockChanceUniqueHelmetStrDex5"] = { affix = "", "Minions have +10% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +10% Chance to Block Attack Damage" }, } }, - ["MinionLifeRegenerationUniqueHelmetStrDex5"] = { affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2916 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, - ["MinionLifeRegenerationUnique__1"] = { affix = "", "Minions Regenerate 1% of Life per second", statOrder = { 2916 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 1% of Life per second" }, } }, - ["MinionArmourUniqueHelmetStrDex5"] = { affix = "", "Minions have +(300-350) to Armour", statOrder = { 2910 }, level = 1, group = "MinionArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [2048970144] = { "Minions have +(300-350) to Armour" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Global Accuracy Rating" }, } }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 545 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 193 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+5 to Level of Socketed Vaal Gems" }, } }, - ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 197 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2574694107] = { "-5 to Level of Socketed Non-Vaal Gems" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 193 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, - ["RingHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["QuiverHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["AmuletHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["BeltHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 70, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasSixSocketsUnique__1"] = { affix = "", "Has 6 Sockets", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 6 Sockets" }, } }, - ["HasOneSocketUnique__1"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__2"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__3"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasTwoSocketsUnique__1"] = { affix = "", "Has 2 Sockets", statOrder = { 74 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 2 Sockets" }, } }, - ["HasThreeSocketsUnique__1_"] = { affix = "", "Has 3 Sockets", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["IncreasedProjectileDamageUniqueQuiver4"] = { affix = "", "(15-20)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueStaff10"] = { affix = "", "(60-100)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(60-100)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "(20-40)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(20-40)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__5"] = { affix = "", "20% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "20% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__1"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___4"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__6"] = { affix = "", "30% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "30% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___10_"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___11"] = { affix = "", "(25-35)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(25-35)% increased Projectile Damage" }, } }, - ["SpellBlockPercentageUniqueQuiver4"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldDex6"] = { affix = "", "(8-12)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, } }, - ["SupportedByEchoUniqueStaff6"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Echo", statOrder = { 230 }, level = 1, group = "DisplaySupportedByLevel1GreaterEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2530022765] = { "Socketed Gems are Supported by Level 1 Greater Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 417 }, level = 1, group = "DisplaySupportedByEchoLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [725896422] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 498 }, level = 1, group = "DisplaySupportedByEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [438778966] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["ControlledDestructionSupportUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 530 }, level = 1, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["SupportedByArcaneSurgeUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 231 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 10 Arcane Surge" }, } }, - ["SpellDodgeUniqueBootsDex7_"] = { affix = "", "+(21-24)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(21-24)% chance to Suppress Spell Damage" }, } }, - ["SpellDodgeUniqueBootsDex7New"] = { affix = "", "+(20-26)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-26)% chance to Suppress Spell Damage" }, } }, - ["FireDamageLifeLeechPerMyriadUniqueBelt9a_"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1674 }, level = 85, group = "FireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechPermyriadUniqueBelt9aNew"] = { affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 85, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPerMyriadUniqueBelt9b"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1679 }, level = 85, group = "ColdDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPermyriadUniqueBelt9bNew"] = { affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 85, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.6% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPerMyriadUniqueBelt9c"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1683 }, level = 85, group = "LightningDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPermyriadUniqueBelt9cNew"] = { affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 85, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.6% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPerMyriadUniqueBelt9d"] = { affix = "", "100% of Physical Damage Leeched as Life", statOrder = { 1670 }, level = 85, group = "PhysicalDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3992463881] = { "100% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew"] = { affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 85, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.6% of Physical Damage Leeched as Life" }, } }, - ["IgniteChanceWhileUsingFlaskUniqueBelt9a"] = { affix = "", "(20-30)% chance to Ignite during any Flask Effect", statOrder = { 2927 }, level = 85, group = "ChanceToIgnightWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [3888064854] = { "(20-30)% chance to Ignite during any Flask Effect" }, } }, - ["FreezeChanceWhileUsingFlaskUniqueBelt9b"] = { affix = "", "(20-30)% chance to Freeze during any Flask Effect", statOrder = { 2928 }, level = 85, group = "ChanceToFreezeWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2332726055] = { "(20-30)% chance to Freeze during any Flask Effect" }, } }, - ["ShockChanceWhileUsingFlaskUniqueBelt9c"] = { affix = "", "(20-30)% chance to Shock during any Flask Effect", statOrder = { 2929 }, level = 85, group = "ChanceToShockWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [796406325] = { "(20-30)% chance to Shock during any Flask Effect" }, } }, - ["ReducedStunThresholdWhileUsingFlaskUniqueBelt9d"] = { affix = "", "25% reduced Enemy Stun Threshold during any Flask Effect", statOrder = { 2932 }, level = 85, group = "ReducedStunThresholdWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4228951304] = { "25% reduced Enemy Stun Threshold during any Flask Effect" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__1"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__2"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__3"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__4"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["FireDamageLifeLeechCorrupted"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechCorrupted_"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechCorrupted"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1683 }, level = 1, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["DamageConversionFireUnique__1"] = { affix = "", "60% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, } }, - ["PierceCurruption"] = { affix = "", "Arrows Pierce 1 additional Target", statOrder = { 4787 }, level = 1, group = "CorruptionBowArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3492025235] = { "Arrows Pierce 1 additional Target" }, } }, - ["AdditionalPierceUnique__1"] = { affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1796 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, - ["CurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2527 }, level = 1, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["CurseOnHitCriticalWeaknessUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 763 }, level = 1, group = "CurseOnHitCriticalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 1, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["SupportedByCastOnStunUnique___1"] = { affix = "", "Socketed Gems are supported by Level 10 Cast when Stunned", statOrder = { 482 }, level = 15, group = "SupportedByCastOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 10 Cast when Stunned" }, } }, - ["SupportedByMeleeSplashUnique__1_"] = { affix = "", "Socketed Gems are supported by Level 30 Melee Splash", statOrder = { 476 }, level = 1, group = "SupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 30 Melee Splash" }, } }, - ["SupportedByAddedFireDamageUnique__1_"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["PuritySkillUniqueAmulet22"] = { affix = "", "Grants Level 10 Purity of Elements Skill", statOrder = { 650 }, level = 7, group = "PuritySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 10 Purity of Elements Skill" }, } }, - ["HatredSkillUniqueDescentClaw1"] = { affix = "", "Grants Level 20 Hatred Skill", statOrder = { 654 }, level = 1, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 20 Hatred Skill" }, } }, - ["SilenceImmunityUnique__1"] = { affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 36, group = "ImmuneToSilence", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["UniqueSpecialCorruptionAreaOfEffect_"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["UniqueSpecialCorruptionSkillEffectDuration"] = { affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["UniqueSpecialCorruptionSocketedGemsManaMultiplier_"] = { affix = "", "Socketed Skill Gems get a 80% Cost & Reservation Multiplier", statOrder = { 535 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 80% Cost & Reservation Multiplier" }, } }, - ["UniqueSpecialCorruptionCooldownRecoverySpeed__"] = { affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["UniqueSpecialCorruptionItemQuantity_"] = { affix = "", "(5-7)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-7)% increased Quantity of Items found" }, } }, - ["UniqueSpecialCorruptionAdditionalProjectile"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["UniqueSpecialCorruptionAuraEffect"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["UniqueSpecialCorruptionCurseEffect___"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2601 }, 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 = { 167 }, 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 = { 9262 }, 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 = { 3401 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesMalediction"] = { affix = "", "Nearby Enemies have Malediction", statOrder = { 3403 }, level = 1, group = "NearbyEnemiesHaveMalediction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2774148053] = { "Nearby Enemies have Malediction" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesCrushed"] = { affix = "", "Nearby Enemies are Crushed", statOrder = { 3402 }, 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 = { 2543 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Life and Mana Leech from Critical Strikes are instant" }, } }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["MinionUnholyMightOnKillUniqueBodyInt9"] = { affix = "", "Minions gain Unholy Might for 10 seconds on Kill", statOrder = { 2923 }, level = 1, group = "MinionUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3835570161] = { "Minions gain Unholy Might for 10 seconds on Kill" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4782 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4781 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2925 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, - ["ElementalDamageLeechedAsLifeUniqueSceptre7"] = { affix = "", "100% of Elemental Damage Leeched as Life", statOrder = { 1690 }, level = 1, group = "ElementalDamageLeechedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3780129663] = { "100% of Elemental Damage Leeched as Life" }, } }, - ["ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_"] = { affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1691 }, level = 1, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 194 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1794 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1794 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1794 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", statOrder = { 2939 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies" }, } }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1244 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [17354819] = { "100% increased Melee Damage against Ignited Enemies" }, } }, - ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1242 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1138694108] = { "100% increased Melee Damage against Shocked Enemies" }, } }, - ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1240 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [298331790] = { "100% increased Melee Damage against Frozen Enemies" }, } }, - ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2710 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2709 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, - ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2708 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4260460340] = { "Projectiles have (15-20)% chance to Ignite" }, } }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 488 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, - ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 488 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 10 Life Leech" }, } }, - ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 489 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2178803872] = { "Socketed Gems are supported by Level 1 Chance to Bleed" }, } }, - ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2458 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2746 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3836017971] = { "Light Radius is based on Energy Shield instead of Life" }, } }, - ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2933 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3277537093] = { "-(50-40) Physical Damage taken from Hits by Animals" }, } }, - ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUniqueBow11"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2940 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1"] = { affix = "", "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2940 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__1__"] = { affix = "", "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2940 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsColdOrLightningUnique__1"] = { affix = "", "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage", statOrder = { 4371 }, level = 1, group = "WeaponPhysicalDamageAddedAsColdOrLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "lightning", "attack" }, tradeHashes = { [1023968711] = { "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage" }, } }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2935 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1625103793] = { "1% increased Damage taken per Frenzy Charge" }, } }, - ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2936 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3693130674] = { "(15-20)% increased Lightning Damage per Frenzy Charge" }, } }, - ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2937 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1269609669] = { "20 Life gained on Kill per Frenzy Charge" }, } }, - ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1526 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10819 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10819 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1570 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2942 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHashes = { [2179619644] = { "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage" }, } }, - ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 630 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3541114083] = { "Grants Level 25 Bear Trap Skill" }, } }, - ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2943 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1936544447] = { "25% chance to gain a Power Charge when you Throw a Trap" }, } }, - ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Strike Chance per 8 Strength", statOrder = { 2944 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Strike Chance per 8 Strength" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2945 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(25-40)% increased Attack Speed while Ignited" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2945 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(10-20)% increased Attack Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2946 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2946 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, - ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-10)% chance to Ignite" }, } }, - ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2953 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2953 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Strike", statOrder = { 8006 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Strike" }, } }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Strikes Poison the Enemy", statOrder = { 2778 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Strikes Poison the Enemy" }, } }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2951 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [93696421] = { "1% increased Attack Damage per 450 Evasion Rating" }, } }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies", statOrder = { 2958 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [485151258] = { "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2974 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, - ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2965 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3212461220] = { "100% Chance to Cause Monster to Flee on Block" }, } }, - ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-35)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-100)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-40)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 1390 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-23)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "100% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7387 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "50% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "50% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "(500-1000)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(500-1000)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "(500-1000)% increased total Recovery per second from Mana Leech", statOrder = { 2163 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(500-1000)% increased total Recovery per second from Mana Leech" }, } }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1412 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (90-130) to (140-190) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1412 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (48-56) to (73-84) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1412 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (16-21) to (31-36) Chaos Damage to Spells" }, } }, - ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of Life on Rampage", statOrder = { 2959 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of Life on Rampage" }, } }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2960 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [627889781] = { "Removes Elemental Ailments on Rampage" }, } }, - ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2961 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3100457893] = { "Gain Immunity to Physical Damage for 1.5 seconds on Rampage" }, } }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6726 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, - ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2972 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3321583955] = { "Creates a Smoke Cloud on Rampage" }, } }, - ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2973 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [376956212] = { "Enemies do not block your movement for 4 seconds on Rampage" }, } }, - ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on hit" }, } }, - ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2966 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 0.2 Life per second per Level" }, } }, - ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Strike Chance per Level", statOrder = { 2967 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Strike Chance per Level" }, } }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2968 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [63607615] = { "1% increased Attack Damage per Level" }, } }, - ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2969 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__1"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2970 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__2"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2970 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2970 }, 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 = { 1699 }, 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 = { 1700 }, 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 = { 2975 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3226921326] = { "" }, [2736066171] = { "Enemies you Attack have 20% chance to Reflect 0 to 0 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10765 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10765 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10765 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10764, 10764.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10765 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10765 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2979 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2979 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2977 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, - ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2978 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [294153754] = { "Gain 1 Energy Shield on Kill per Level" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+12 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+12 to Level of Socketed Skill Gems" }, } }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2981 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2094646950] = { "1% increased Elemental Damage per Level" }, } }, - ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2982 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4084331136] = { "1% increased Chaos Damage per Level" }, } }, - ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2976 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["UnholyMightOnRampageUniqueGlovesDexInt6"] = { affix = "", "Gain Unholy Might for 3 seconds on Rampage", statOrder = { 2980 }, level = 1, group = "UnholyMightOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [757315075] = { "Gain Unholy Might for 3 seconds on Rampage" }, } }, - ["ReduceGlobalFlatManaCostUnique__1"] = { affix = "", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1896 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__1"] = { affix = "", "+50 to Total Mana Cost of Skills", statOrder = { 1896 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "+50 to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__2"] = { affix = "", "Lose (40-80) Mana when you use a Skill", statOrder = { 8149 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose (40-80) Mana when you use a Skill" }, } }, - ["IncreaseGlobalFlatManaCostUnique__3_"] = { affix = "", "Lose 40 Mana when you use a Skill", statOrder = { 8149 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose 40 Mana when you use a Skill" }, } }, - ["ReducedLifeRegenerationPercentUniqueOneHandAxe5"] = { affix = "", "50% reduced Life Regeneration rate", statOrder = { 1582 }, level = 1, group = "IncreaseLifeRegenerationPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% reduced Life Regeneration rate" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__2"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+30% to Quality of Socketed Support Gems" }, } }, - ["IgniteDurationUnique__1"] = { affix = "", "20% reduced Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "20% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__2"] = { affix = "", "90% reduced Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "90% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__3_"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1864 }, 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 = { 1864 }, 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 = { 330 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["MapAreaContainsInvasionBosses"] = { affix = "", "Area is inhabited by 5 additional Invasion Bosses", statOrder = { 2625 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by 5 additional Invasion Bosses" }, [2390685262] = { "" }, } }, - ["MapAnarchyExiles"] = { affix = "", "Area is inhabited by 3 additional Rogue Exiles", statOrder = { 2338 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 3 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "" }, [2390685262] = { "" }, } }, - ["MapAnarchyExilesCrafted"] = { affix = "", "Area is inhabited by 3 additional Rogue Exiles", "Scarabs dropped in Area have 50% increased chance to be Anarchy Scarabs", statOrder = { 2338, 10728 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 3 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "Scarabs dropped in Area have 50% increased chance to be Anarchy Scarabs" }, [2390685262] = { "" }, } }, - ["HarvestInfusedMapAnarchyExiles"] = { affix = "", "Area is inhabited by 12 additional Rogue Exiles", statOrder = { 2338 }, level = 0, group = "MapAnarchyLeagueCrafted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1489521603] = { "" }, [3550168289] = { "Area is inhabited by 12 additional Rogue Exiles" }, [3629113735] = { "" }, [723578929] = { "" }, [2390685262] = { "" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 608 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [223497523] = { "" }, [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 610 }, 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 = { 10473 }, 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 = { 1631 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, - ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1643 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, - ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1637 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, - ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2986 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["ManaLeechFromLightningDamageUniqueStaff8"] = { affix = "", "200% of Lightning Damage Leeched as Mana", statOrder = { 1716 }, level = 1, group = "LightningManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [636708308] = { "200% of Lightning Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadFromLightningDamageUniqueStaff8"] = { affix = "", "0.4% of Lightning Damage Leeched as Mana", statOrder = { 1717 }, level = 1, group = "LightningManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1399420168] = { "0.4% of Lightning Damage Leeched as Mana" }, } }, - ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 81 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 81 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["PunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 2992 }, level = 1, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2922377850] = { "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit" }, } }, - ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 2993 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [541329769] = { "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" }, } }, - ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 2994 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2048643052] = { "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" }, } }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 541 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem", "drop" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2990 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2990 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["HealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 2996 }, level = 1, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3484267929] = { "Nearby allies Recover 1% of your Maximum Life when you Die" }, } }, - ["SelfShockDurationUniqueBelt12_"] = { affix = "", "100% increased Shock Duration on you", statOrder = { 1878 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "100% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on you", statOrder = { 1878 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "10000% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__2"] = { affix = "", "50% increased Shock Duration on you", statOrder = { 1878 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "50% increased Shock Duration on you" }, } }, - ["ShocksReflectToSelfUniqueBelt12"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2779 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["ShocksReflectToSelfUnique__1"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2779 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["MovementVelocityWhileShockedUniqueBelt12"] = { affix = "", "15% increased Movement Speed while Shocked", statOrder = { 2811 }, level = 1, group = "MovementVelocityWhileShocked", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [542923416] = { "15% increased Movement Speed while Shocked" }, } }, - ["DamageIncreaseWhileShockedUniqueBelt12"] = { affix = "", "60% increased Damage while Shocked", statOrder = { 2780 }, level = 1, group = "DamageIncreaseWhileShocked", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [529432426] = { "60% increased Damage while Shocked" }, } }, - ["DamageOnLowLifeUniqueHelmetStrInt5"] = { affix = "", "20% increased Damage when on Low Life", statOrder = { 1220 }, level = 1, group = "DamagePercentageWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "20% increased Damage when on Low Life" }, } }, - ["SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 483 }, level = 1, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2816 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2816 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2581 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [953314356] = { "25% chance to create a Smoke Cloud when Hit" }, } }, - ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2762 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, - ["IncreasedDamageToShockedTargetsUniqueRing29"] = { affix = "", "40% increased Damage with Hits against Shocked Enemies", statOrder = { 1243 }, level = 1, group = "IncreasedDamageToShockedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4194900521] = { "40% increased Damage with Hits against Shocked Enemies" }, } }, - ["LifeLeechVsShockedEnemiesUniqueRing29"] = { affix = "", "100% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1692 }, level = 48, group = "LeechLifeVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1825669392] = { "100% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["LifeLeechPermyriadVsShockedEnemiesUniqueRing29"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1693 }, level = 48, group = "LeechLifePermyriadVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["AddedPhysicalDamageVsFrozenEnemiesUniqueRing30"] = { affix = "", "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies", statOrder = { 1276 }, level = 1, group = "AddedPhysicalDamageOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3856468419] = { "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies" }, } }, - ["ReducedChillDurationOnSelfUniqueRing30"] = { affix = "", "20% reduced Chill Duration on you", statOrder = { 1877 }, level = 25, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "20% reduced Chill Duration on you" }, } }, - ["ChillDurationOnSelfUnique__1"] = { affix = "", "10000% increased Chill Duration on you", statOrder = { 1877 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "10000% increased Chill Duration on you" }, } }, - ["LifeGainOnHitVsIgnitedEnemiesUniqueRing31"] = { affix = "", "Gain (4-5) Life for each Ignited Enemy hit with Attacks", statOrder = { 1748 }, level = 37, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (4-5) Life for each Ignited Enemy hit with Attacks" }, } }, - ["SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_"] = { affix = "", "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage", statOrder = { 537 }, level = 1, group = "SocketedRedGemsHaveAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "gem" }, tradeHashes = { [2629366488] = { "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage" }, } }, - ["SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8"] = { affix = "", "Socketed Melee Gems have 15% increased Area of Effect", statOrder = { 536 }, level = 1, group = "SocketedMeleeGemsHaveIncreasedAoE", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2462976337] = { "Socketed Melee Gems have 15% increased Area of Effect" }, } }, - ["ReducedCriticalStrikeDamageTakenUniqueBelt13"] = { affix = "", "You take 30% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 30% reduced Extra Damage from Critical Strikes" }, } }, - ["PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9"] = { affix = "", "50% of Physical Damage Converted to Fire Damage against Ignited Enemies", statOrder = { 2182 }, level = 1, group = "PhysicalDamageConvertedToFireVsBurningEnemy", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4178812762] = { "50% of Physical Damage Converted to Fire Damage against Ignited Enemies" }, } }, - ["PhysicalAddedAsColdUniqueOneHandSword12"] = { affix = "", "Gain (25-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (25-30)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__1"] = { affix = "", "Gain 50% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 35, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 50% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__2"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__3"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-50)% of Physical Damage as Extra Cold Damage" }, } }, - ["IncreasedSelfBurnDurationUniqueRing28"] = { affix = "", "100% increased Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "100% increased Ignite Duration on you" }, } }, - ["SelfBurnDurationUnique__1"] = { affix = "", "10000% increased Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "10000% increased Ignite Duration on you" }, } }, - ["FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage taken causes extra Physical Damage", statOrder = { 2459 }, level = 1, group = "FireDamageTakenCausesExtraPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1359741607] = { "10% of Fire Damage taken causes extra Physical Damage" }, } }, - ["ReducedChanceToBlockUnique__1"] = { affix = "", "30% reduced Chance to Block Attack and Spell Damage", statOrder = { 1171 }, level = 1, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "30% reduced Chance to Block Attack and Spell Damage" }, } }, - ["ChillEffectivenessOnSelfUniqueRing28"] = { affix = "", "75% reduced Effect of Chill on you", statOrder = { 1650 }, level = 30, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "75% reduced Effect of Chill on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUniqueRing27"] = { affix = "", "Temporal Chains has 50% reduced Effect on you", statOrder = { 1649 }, level = 28, group = "TemporalChainsEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1152934561] = { "Temporal Chains has 50% reduced Effect on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUnique__1"] = { affix = "", "Unaffected by Temporal Chains", statOrder = { 10482 }, level = 32, group = "UnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4212372504] = { "Unaffected by Temporal Chains" }, } }, - ["PhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2218 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [99487834] = { "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage" }, } }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 2247 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, - ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2451 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1029319062] = { "10% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2450 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1277 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [627339348] = { "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies" }, } }, - ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 759, 759.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHashes = { [2816098341] = { "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses" }, } }, - ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 2% increased Damage per 5 Dexterity", statOrder = { 1983 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 2% increased Damage per 5 Dexterity" }, } }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 758 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2770461177] = { "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy" }, } }, - ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5440 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3020 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2997 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2997 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 2144 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "(4-7)% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 2144 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "10% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Full Life", statOrder = { 3002 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies on Full Life" }, } }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 3003 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [82392902] = { "2% increased Damage per Power Charge with Hits against Enemies on Low Life" }, } }, - ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 3001 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2724643145] = { "Penetrate 1% Elemental Resistances per Frenzy Charge" }, } }, - ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3031 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(100-200)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1866 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "20% reduced Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1866 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "50% increased Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1866 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "(10-15)% increased Duration of Elemental Ailments on Enemies" }, } }, - ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 3026 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740359895] = { "Your Hits can only Kill Frozen Enemies" }, } }, - ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1863 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "100% increased Freeze Duration on Enemies" }, } }, - ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1861, 1863 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "10000% increased Chill Duration on Enemies" }, [1073942215] = { "10000% increased Freeze Duration on Enemies" }, } }, - ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1863 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "30% increased Freeze Duration on Enemies" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 3029 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, - ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 3032 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "350 Physical Damage taken on Minion Death" }, } }, - ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 3028 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1617739170] = { "8% of Maximum Energy Shield taken as Physical Damage on Minion Death" }, } }, - ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2795 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, - ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2796 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [282353000] = { "Deal no Non-Physical Damage" }, } }, - ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4914 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards", statOrder = { 10065, 10065.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1031404836] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards" }, } }, - ["LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "300% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1697 }, level = 65, group = "LifeLeechFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1028143379] = { "300% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "1% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1698 }, level = 65, group = "LifeLeechPermyriadFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [748813744] = { "1% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2571 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [1420236871] = { "Ignites you inflict with Attacks deal Damage 35% faster" }, } }, - ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 614 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [967556848] = { "Socketed Gems fire Projectiles in a circle" }, } }, - ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 615 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 612 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire 4 additional Projectiles" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 612 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire an additional Projectile" }, } }, - ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 613 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [973574623] = { "Socketed Projectile Spells fire 4 additional Projectiles" }, } }, - ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 616 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, - ["MainHandAdditionalProjectilesWhileInOffHandUnique__1"] = { affix = "", "Attacks fire (1-2) additional Projectile when in Off Hand", statOrder = { 10490 }, level = 1, group = "MainHandAdditionalProjectilesWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4209631466] = { "Attacks fire (1-2) additional Projectile when in Off Hand" }, } }, - ["OffHandAreaOfEffectWhileInMainHandUnique__1"] = { affix = "", "Attacks have (40-60)% increased Area of Effect when in Main Hand", statOrder = { 10491 }, level = 1, group = "OffHandAreaOfEffectWhileInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [421841616] = { "Attacks have (40-60)% increased Area of Effect when in Main Hand" }, } }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 499 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-40)% increased Area of Effect of Aura Skills" }, } }, - ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, - ["ChaosDamagePoisonsUniqueDagger10"] = { affix = "", "Your Chaos Damage Poisons Enemies", statOrder = { 3036 }, level = 1, group = "ChaosDamagePoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3549040753] = { "Your Chaos Damage Poisons Enemies" }, } }, - ["ChaosDamageChanceToPoisonUnique__1"] = { affix = "", "Your Chaos Damage has 60% chance to Poison Enemies", statOrder = { 3037 }, level = 1, group = "ChaosDamageChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2894297982] = { "Your Chaos Damage has 60% chance to Poison Enemies" }, } }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 2143 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1586440250] = { "(4-7)% increased Elemental Damage per Frenzy Charge" }, } }, - ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 3038 }, 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 = { 3033 }, 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 = { 1281 }, 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 = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LifeLeechUniqueOneHandAxe6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, 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 = { 1656 }, 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 = { 3035 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2872105818] = { "100% chance to Avoid being Chilled during Onslaught" }, } }, - ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of Life per second", statOrder = { 1949 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem", statOrder = { 10645 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem" }, } }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of Life per second" }, } }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(40-60)% increased Mine Throwing Speed" }, } }, - ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1933 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-15)% reduced Mine Throwing Speed" }, } }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 9224 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1202 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3298440988] = { "35% less Mine Damage" }, } }, - ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 502 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 10 Blastchain Mine" }, } }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5826 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2442 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits" }, } }, - ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2443 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2577 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(200-250) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2577 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(90-120) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 3016 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 3017 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2437193018] = { "All Attack Damage Chills when you Stun" }, } }, - ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of Life Regenerated per second", statOrder = { 3005 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of Life Regenerated per second" }, } }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 3010 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [778848857] = { "Nearby Allies gain 80% increased Mana Regeneration Rate" }, } }, - ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2702 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["IncreasedRarityWhenSlayingFrozenUnique__1"] = { affix = "", "30% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2702 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "30% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage", statOrder = { 3045 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [754005431] = { "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage" }, } }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 3023 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1489905076] = { "Allies' Aura Buffs do not affect you" }, } }, - ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 3025 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [4196775867] = { "Your Aura Buffs do not affect allies" }, } }, - ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased Effect of Buffs on you", statOrder = { 2149 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "10% increased Effect of Buffs on you" }, } }, - ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased Effect of Buffs on you", statOrder = { 2149 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased Effect of Buffs on you" }, } }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3022 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 507 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 10 Knockback" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 3015 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate 75 Life per second per Endurance Charge" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 3015 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, - ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2485 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1747 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 6 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1747 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 10 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1747 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 14 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1743, 1750 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, [640052854] = { "Grants 6 Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 1743, 1750 }, 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 = { 1743, 1750 }, 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 = { 1661 }, 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 = { 668 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, [231162761] = { "" }, } }, - ["SolartwineUniqueBelt55"] = { affix = "", "Grants Level 20 Blazing Glare", statOrder = { 7902 }, level = 30, group = "SolartwineActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3696252104] = { "Grants Level 20 Blazing Glare" }, } }, - ["BitingBraidUniqueBelt52"] = { affix = "", "Grants Level 20 Caustic Retribution", statOrder = { 7898 }, 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 = { 6396 }, level = 30, group = "EnemiesPoisonedByYouCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1330636770] = { "Enemies Poisoned by you cannot deal Critical Strikes" }, } }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2775 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2318615887] = { "30% chance to gain a Power Charge when you Stun with Melee Damage" }, } }, - ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2776 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, - ["UnholyMightOnMeleeCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 2 seconds on Melee Critical Strike", statOrder = { 2920 }, level = 1, group = "UnholyMightOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1483655843] = { "Gain Unholy Might for 2 seconds on Melee Critical Strike" }, } }, - ["UnholyMightOnCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2922 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9746 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10828 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 651 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3321235265] = { "Grants Level 10 Gluttony of Elements Skill" }, } }, - ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 515 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7402 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__8"] = { affix = "", "(6-8)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__9"] = { affix = "", "(0-40)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(0-40)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__10"] = { affix = "", "(6-12)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-12)% increased Attack and Cast Speed" }, } }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1186 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+20 to Strength and Intelligence" }, } }, - ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1186 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-30) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1187 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1198 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 2051 }, 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 = { 9498 }, level = 100, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["LifeLeechLocal1"] = { affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 9, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal2"] = { affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 25, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal3"] = { affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 72, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalUniqueOneHandMace8"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1655 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechLocal1"] = { affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 9, group = "ManaLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadLocalUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1897 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4080656180] = { "Your Attacks do not cost Mana" }, } }, - ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2574 }, 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 = { 2574 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10827 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1856 }, 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 = { 1856 }, 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 = { 1848 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "30% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__3"] = { affix = "", "(15-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-25)% chance to Avoid Elemental Ailments" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2488 }, 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 = { 2488 }, 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 = { 2488 }, 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 = { 2494 }, 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 = { 2494 }, 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 = { 2494 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 9337 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(12-15)% chance to Suppress Spell Damage" }, } }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their Life when they Block", statOrder = { 3066 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their Life when they Block" }, } }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 3068 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(30-40)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 3068 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2810 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "10% increased Movement Speed while Ignited" }, } }, - ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2810 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2538 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1602 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Strike Multiplier", statOrder = { 7907 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Strike Multiplier" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7909 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Effect of your Curses", statOrder = { 2601 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Effect of your Curses", statOrder = { 2601 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2601 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 2249 }, 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 = { 1970 }, 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 = { 2931 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, - ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3019 }, 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 = { 2583 }, 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 = { 2583 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-50)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2583 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(20-30)% increased Totem Placement speed" }, } }, - ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2496 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "40% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2496 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "30% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2496 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "(25-40)% increased Attack Damage against Bleeding Enemies" }, } }, - ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2522 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, - ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 716 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [243713911] = { "Grants Level 1 Lightning Warp Skill" }, } }, - ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 486 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2497 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "30% increased Melee Damage against Bleeding Enemies" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2497 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "50% increased Melee Damage against Bleeding Enemies" }, } }, - ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (4-6) to (8-12) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 100 to 100 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__7"] = { affix = "", "Adds (9-12) to (19-22) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (19-22) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-30) to 40 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (2-3) to (5-6) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (40-60) to (90-110) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-39) to (54-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (24-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (120-140) to (150-170) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 100 to 100 Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-10) to (150-200) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (10-12) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-70) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (26-35) to (95-105) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-18) to (50-56) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (100-140) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (26-38) to (52-70) Chaos Damage", statOrder = { 1395 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-38) to (52-70) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (43-55) to (81-104) Chaos Damage", statOrder = { 1395 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-55) to (81-104) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (46-63) to (92-113) Chaos Damage", statOrder = { 1395 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (46-63) to (92-113) Chaos Damage" }, } }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1436 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "20% increased Damage with Movement Skills" }, } }, - ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1436 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "(60-100)% increased Damage with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1437 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "15% increased Attack Speed with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1437 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "(10-20)% increased Attack Speed with Movement Skills" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1758 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain 10 Life per Ignited Enemy Killed" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1758 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain (200-300) Life per Ignited Enemy Killed" }, } }, - ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 2252 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 2253 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2903 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, - ["LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8"] = { affix = "", "3% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1701 }, level = 1, group = "LifeLeechPhysicalAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1625933063] = { "3% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["DisplaySocketedGemsSupportedByMinionLifeUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Minion Life", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 15 Minion Life" }, } }, - ["DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 12 Multiple Projectiles", statOrder = { 510 }, level = 1, group = "DisplaySocketedGemsSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 12 Multiple Projectiles" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 17 Minion Damage", statOrder = { 511 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 17 Minion Damage" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_"] = { affix = "", "Socketed Gems are Supported by Level 16 Increased Critical Damage", statOrder = { 512 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1771903158] = { "Socketed Gems are Supported by Level 16 Increased Critical Damage" }, } }, - ["DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 16 Minion Speed", statOrder = { 513 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 16 Minion Speed" }, } }, - ["ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5"] = { affix = "", "Gain 3 Mana per Taunted Enemy Hit", statOrder = { 1789 }, level = 1, group = "ManaOnHitVsTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1834588299] = { "Gain 3 Mana per Taunted Enemy Hit" }, } }, - ["LifeGainedOnTauntingEnemyUniqueShieldStr4"] = { affix = "", "Gain +10 Life when you Taunt an Enemy", statOrder = { 1788 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +10 Life when you Taunt an Enemy" }, } }, - ["LifeGainedOnTauntingEnemyUnique__1"] = { affix = "", "Gain +50 Life when you Taunt an Enemy", statOrder = { 1788 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +50 Life when you Taunt an Enemy" }, } }, - ["IncreasedTauntDurationUniqueShieldStr4"] = { affix = "", "20% increased Taunt Duration", statOrder = { 1787 }, level = 1, group = "TauntDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3651611160] = { "20% increased Taunt Duration" }, } }, - ["OnslaughtOnKillingTauntedEnemyUniqueShieldDex7"] = { affix = "", "You gain Onslaught for 2 seconds on Killing Taunted Enemies", statOrder = { 2649 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 2 seconds on Killing Taunted Enemies" }, } }, - ["OnslaughtOnKillingTauntedEnemyUnique__1"] = { affix = "", "You gain Onslaught for 1 seconds on Killing Taunted Enemies", statOrder = { 2649 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 1 seconds on Killing Taunted Enemies" }, } }, - ["TotemAreaOfEffectUniqueShieldStr5"] = { affix = "", "15% increased Area of Effect for Skills used by Totems", statOrder = { 2586 }, level = 1, group = "TotemAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [869436347] = { "15% increased Area of Effect for Skills used by Totems" }, } }, - ["LifeLeechFromTotemSkillsUniqueShieldStr5"] = { affix = "", "1% of Damage Leeched as Life for Skills used by Totems", statOrder = { 2587 }, level = 1, group = "LifeLeechFromTotemSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2449723897] = { "1% of Damage Leeched as Life for Skills used by Totems" }, } }, - ["AnimateWeaponDurationUniqueTwoHandMace8"] = { affix = "", "30% less Animate Weapon Duration", statOrder = { 2800 }, level = 1, group = "AnimateWeaponDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [414991155] = { "30% less Animate Weapon Duration" }, } }, - ["NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8"] = { affix = "", "Weapons you Animate create an additional copy", statOrder = { 2802 }, level = 1, group = "NumberOfAdditionalAnimateWeaponCopies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1266553505] = { "Weapons you Animate create an additional copy" }, } }, - ["DamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2716 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "100% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["DamageYouReflectGainedAsLifeUnique__1"] = { affix = "", "10% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2716 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "10% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["ImmuneToChilledGroundUniqueBootsStrDex5"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["UniqueUnaffectedByBurningGround__1"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["ImmuneToShockedGroundUniqueBootsDexInt4"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["UniqueUnaffectedByShockedGround__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByDesecratedGround__1"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByChilledGround__1"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToShockedGroundUnique__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ShockedGroundWhenHitUniqueHelmetInt10"] = { affix = "", "20% chance to create Shocked Ground when Hit", statOrder = { 2582 }, level = 1, group = "ShockedGroundWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3355479537] = { "20% chance to create Shocked Ground when Hit" }, } }, - ["ShockedGroundWhenHitUnique__1"] = { affix = "", "Trigger Level 10 Shock Ground when Hit", statOrder = { 681 }, level = 1, group = "ShockedGroundWhenHitSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668070396] = { "Trigger Level 10 Shock Ground when Hit" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10"] = { affix = "", "Adds 1 to (60-80) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (60-80) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks" }, } }, - ["RandomCurseOnHitChanceUniqueHelmetInt10"] = { affix = "", "20% chance to Curse non-Cursed Enemies with a random Hex on Hit", statOrder = { 9824 }, level = 1, group = "RandomCurseOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1726444796] = { "20% chance to Curse non-Cursed Enemies with a random Hex on Hit" }, } }, - ["RandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9825 }, level = 1, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2674214144] = { "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit" }, } }, - ["CanInflictMultipleIgnitesUniqueRing38"] = { affix = "", "You can inflict an additional Ignite on each Enemy", statOrder = { 9520 }, level = 20, group = "CanInflictMultipleIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2837603657] = { "You can inflict an additional Ignite on each Enemy" }, } }, - ["EmberwakeLessBurningDamageUniqueRing38"] = { affix = "", "Ignited Enemies Burn (50-65)% slower", statOrder = { 2570 }, level = 1, group = "EmberwakeLessBurningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1619549198] = { "Ignited Enemies Burn (50-65)% slower" }, } }, - ["EmberwakeLessBurningDamageUnique__1"] = { affix = "", "40% less Burning Damage", statOrder = { 8017 }, level = 1, group = "EmberwakeLessBurningDamageNew", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3134513219] = { "40% less Burning Damage" }, } }, - ["GainPhasingOnVaalSkillUseUnique__1"] = { affix = "", "You gain Phasing for 10 seconds on using a Vaal Skill", statOrder = { 2926 }, level = 1, group = "GainPhasingOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [4089413281] = { "You gain Phasing for 10 seconds on using a Vaal Skill" }, } }, - ["MovementSpeedWhilePhasedUnique__1"] = { affix = "", "15% increased Movement Speed while Phasing", statOrder = { 2615 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "15% increased Movement Speed while Phasing" }, } }, - ["MovementSpeedWhilePhasedUnique__2"] = { affix = "", "10% increased Movement Speed while Phasing", statOrder = { 2615 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "10% increased Movement Speed while Phasing" }, } }, - ["LifePerRedSocket"] = { affix = "", "+30 to Maximum Life per Red Socket", statOrder = { 2721 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+30 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocket"] = { affix = "", "+30 to Maximum Energy Shield per Blue Socket", statOrder = { 2729 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+30 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocket"] = { affix = "", "+30 to Maximum Mana per Green Socket", statOrder = { 2725 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+30 to Maximum Mana per Green Socket" }, } }, - ["LifePerRedSocketUniqueRing39"] = { affix = "", "+100 to Maximum Life per Red Socket", statOrder = { 2721 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+100 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocketUniqueRing39"] = { affix = "", "+100 to Maximum Energy Shield per Blue Socket", statOrder = { 2729 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+100 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocketUniqueRing39"] = { affix = "", "+100 to Maximum Mana per Green Socket", statOrder = { 2725 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+100 to Maximum Mana per Green Socket" }, } }, - ["ItemRarityPerWhiteSocketUniqueRing39"] = { affix = "", "60% increased Item Rarity per White Socket", statOrder = { 2735 }, 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 = { 2739 }, 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 = { 2740 }, 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 = { 3051 }, 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 = { 3051 }, level = 1, group = "UnholyMightOnBlockChanceDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3217895241] = { "" }, [414622266] = { "Gain Unholy Might on Block for 3 seconds" }, } }, - ["IncreasedDamageOnBurningGroundUniqueBootsInt6"] = { affix = "", "50% increased Damage on Burning Ground", statOrder = { 2152 }, 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 = { 2153 }, 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 = { 2151 }, level = 1, group = "MovementVelocityOnShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3678841229] = { "20% increased Movement Speed on Shocked Ground" }, } }, - ["ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8"] = { affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__1"] = { affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__2"] = { affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__3"] = { affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.4-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["PhysicalDamageAddedAsChaosImplicitQuiver11New"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 69, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-15)% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosUniqueShiledStrInt8"] = { affix = "", "Gain (5-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, 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 = { 2733 }, level = 75, group = "ItemQuantityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2340173293] = { "15% increased Item Quantity per White Socket" }, } }, - ["TalismanHasOneSocket_"] = { affix = "", "Has 1 Socket", statOrder = { 74 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["TalismanIncreasedMana"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["TalismanIncreasedFireDamage"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["TalismanIncreasedColdDamage"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["TalismanIncreasedLightningDamage"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, 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 = { 1236 }, 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 = { 1390 }, 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 = { 2165 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["TalismanIncreasedCriticalChance"] = { affix = "", "(40-50)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-50)% increased Global Critical Strike Chance" }, } }, - ["TalismanIncreasedStrength"] = { affix = "", "(8-14)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(8-14)% increased Strength" }, } }, - ["TalismanIncreasedDexterity"] = { affix = "", "(8-14)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-14)% increased Dexterity" }, } }, - ["TalismanIncreasedIntelligence"] = { affix = "", "(8-14)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-14)% increased Intelligence" }, } }, - ["TalismanIncreasedEnergyShield"] = { affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["TalismanIncreasedLife"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["TalismanIncreasedItemQuantity"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1597 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["TalismanIncreasedAllAttributes"] = { affix = "", "(12-16)% increased Attributes", statOrder = { 1188 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(12-16)% increased Attributes" }, } }, - ["TalismanGlobalDamageOverTimeMultiplier"] = { affix = "", "+(12-18)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-18)% to Damage over Time Multiplier" }, } }, - ["AllAttributesPercentUnique__2"] = { affix = "", "(5-15)% increased Attributes", statOrder = { 1188 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-15)% increased Attributes" }, } }, - ["TalismanIncreasedDamage"] = { affix = "", "(25-35)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(25-35)% increased Damage" }, } }, - ["TalismanIncreasedCriticalStrikeMultiplier_"] = { affix = "", "+(24-36)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-36)% to Global Critical Strike Multiplier" }, } }, - ["TalismanDamageDealtAddedAsRandomElement"] = { affix = "", "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 1, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (6-12)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["TalismanIncreasedAreaOfEffect"] = { affix = "", "(5-8)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, } }, - ["TalismanFireTakenAsCold"] = { affix = "", "50% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3181 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "50% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___1"] = { affix = "", "20% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3181 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "20% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___2_"] = { affix = "", "30% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3181 }, level = 62, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "30% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["TalismanFireTakenAsLightning"] = { affix = "", "50% of Fire Damage from Hits taken as Lightning Damage", statOrder = { 3182 }, level = 1, group = "FireDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [1504091975] = { "50% of Fire Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanColdTakenAsFire"] = { affix = "", "50% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3183 }, level = 1, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "50% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["TalismanColdTakenAsLightning"] = { affix = "", "50% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 3184 }, level = 1, group = "ColdDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1313503107] = { "50% of Cold Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanLightningTakenAsCold"] = { affix = "", "50% of Lightning Damage from Hits taken as Cold Damage", statOrder = { 3187 }, level = 1, group = "LightningDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1017730114] = { "50% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["TalismanLightningTakenAsFire"] = { affix = "", "50% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 3185 }, level = 1, group = "LightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [3375859421] = { "50% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["TalismanReducedPhysicalDamageTaken_"] = { affix = "", "(4-6)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(4-6)% additional Physical Damage Reduction" }, } }, - ["TalismanIncreasedSkillEffectDuration"] = { affix = "", "(20-25)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(20-25)% increased Skill Effect Duration" }, } }, - ["TalismanPercentLifeRegeneration"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["TalismanChanceToFreezeShockIgnite_"] = { affix = "", "(4-6)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(4-6)% chance to Freeze, Shock and Ignite" }, } }, - ["TalismanFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["TalismanPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["TalismanEnduranceChargeOnKill_"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, - ["TalismanGlobalDefensesPercent"] = { affix = "", "(15-25)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, - ["TalismanFishBiteSensitivity"] = { affix = "", "(30-40)% increased Fish Bite Sensitivity", statOrder = { 3588 }, level = 1, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(30-40)% increased Fish Bite Sensitivity" }, } }, - ["FishBiteSensitivityUnique__1"] = { affix = "", "(20-40)% increased Fish Bite Sensitivity", statOrder = { 3588 }, level = 48, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(20-40)% increased Fish Bite Sensitivity" }, } }, - ["TalismanAttackAndCastSpeed"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["TalismanSpellDamage"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["TalismanAttackDamage"] = { affix = "", "(20-30)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-30)% increased Attack Damage" }, } }, - ["TalismanPierceChance"] = { affix = "", "Projectiles Pierce (25-35) additional Targets", statOrder = { 10353 }, level = 1, group = "OldTalismanPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2902845638] = { "Projectiles Pierce (25-35) additional Targets" }, } }, - ["TalismanAdditionalPierce"] = { affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["DamageTakeFromManaBeforeLifePerPowerChargeUnique__1"] = { affix = "", "1% of Damage is taken from Mana before Life per Power Charge", statOrder = { 3170 }, 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 = { 1984 }, 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 = { 3171 }, level = 1, group = "CriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2102212273] = { "40% reduced Critical Strike Chance per Power Charge" }, } }, - ["FlaskChargeRecoveryDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Flask Charges gained during any Flask Effect", statOrder = { 3188 }, 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 = { 3188 }, 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 = { 3189 }, level = 14, group = "ManaRegenerationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2993091567] = { "50% increased Mana Regeneration Rate during any Flask Effect" }, } }, - ["EnemiesLoseLifePlayerLeechesUnique__1"] = { affix = "", "200% of Life Leech applies to Enemies as Chaos Damage", statOrder = { 3190 }, level = 55, group = "EnemiesLoseLifePlayerLeeches", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "life", "damage", "chaos" }, tradeHashes = { [768537671] = { "200% of Life Leech applies to Enemies as Chaos Damage" }, } }, - ["MovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "15% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 1, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "15% increased Movement Speed during any Flask Effect" }, } }, - ["NoExtraBleedDamageWhileMovingUniqueAmulet25"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 69, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["NoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["AttacksHaveBloodMagic__1"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10830 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1"] = { affix = "", "Traps from Socketed Skills create a Smoke Cloud when triggered", statOrder = { 618 }, 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 = { 3225 }, 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 = { 3226 }, level = 1, group = "SpellDamageTakenFromBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1165847826] = { "30% reduced Spell Damage taken from Blinded Enemies" }, } }, - ["StunThresholdBasedOnManaUnique__1"] = { affix = "", "Stun Threshold is based on 500% of your Mana instead of Life", statOrder = { 3276 }, level = 1, group = "StunThresholdBasedOnMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2280488002] = { "Stun Threshold is based on 500% of your Mana instead of Life" }, } }, - ["PowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Strike" }, } }, - ["NoLifeRegenerationUnique___1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2276 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["NeverBlockUnique__1"] = { affix = "", "Cannot Block", statOrder = { 3270 }, level = 1, group = "NeverBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4127720801] = { "Cannot Block" }, } }, - ["LocalShieldHasNoBlockChanceUnique__1"] = { affix = "", "No Chance to Block", statOrder = { 3271 }, level = 1, group = "LocalShieldHasNoBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1023752508] = { "No Chance to Block" }, } }, - ["GrantUniqueBuff__1"] = { affix = "", "Gain Her Blessing for 3 seconds when you Ignite an Enemy", statOrder = { 3283 }, level = 66, group = "HerBlessingOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4203400545] = { "Gain Her Blessing for 3 seconds when you Ignite an Enemy" }, } }, - ["UniqueConditionOnBuff__1"] = { affix = "", "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", statOrder = { 3285 }, 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 = { 3286 }, 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 = { 3284 }, level = 66, group = "BlindOnGainingHerBlessing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2327728343] = { "33% chance to Blind nearby Enemies when gaining Her Blessing" }, } }, - ["MinionAttackAndCastSpeedPerSkeleton__1"] = { affix = "", "2% increased Minion Attack and Cast Speed per Skeleton you own", statOrder = { 3278 }, level = 1, group = "MinionAttackAndCastSpeedPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [729367217] = { "2% increased Minion Attack and Cast Speed per Skeleton you own" }, } }, - ["MinionDurationPerZombie__1"] = { affix = "", "2% increased Minion Duration per Raised Zombie", statOrder = { 3279 }, level = 1, group = "MinionDurationPerZombie", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [777246604] = { "2% increased Minion Duration per Raised Zombie" }, } }, - ["MinionDamagePerSpectre__1"] = { affix = "", "(8-12)% increased Minion Damage per Raised Spectre", statOrder = { 3280 }, level = 1, group = "MinionDamagePerSpectre", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3191537057] = { "(8-12)% increased Minion Damage per Raised Spectre" }, } }, - ["MinionLifeRegenerationPerRagingSpirit__1"] = { affix = "", "Minions Regenerate (1.5-2.5)% of Life per second", statOrder = { 2916 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1.5-2.5)% of Life per second" }, } }, - ["ExplodeOnKillChaosUnique__1"] = { affix = "", "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3310 }, level = 1, group = "ObliterationExplodeOnKillChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["ReduceManaCostPerEnduranceChargeUnique__1"] = { affix = "", "4% reduced Mana Cost per Endurance Charge", statOrder = { 3272 }, level = 1, group = "ReduceManaCostPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1774881905] = { "4% reduced Mana Cost per Endurance Charge" }, } }, - ["RampageWhileAtMaxEnduranceChargesUnique__1"] = { affix = "", "Gain Rampage while at Maximum Endurance Charges", statOrder = { 3273 }, level = 1, group = "RampageWhileAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1643796079] = { "Gain Rampage while at Maximum Endurance Charges" }, } }, - ["LoseEnduranceChargesOnRampageEndUnique___1"] = { affix = "", "Lose all Endurance Charges when Rampage ends", statOrder = { 3274 }, level = 1, group = "LoseEnduranceChargesOnRampageEnd", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2881426199] = { "Lose all Endurance Charges when Rampage ends" }, } }, - ["IncreasedDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "40% increased Damage with Hits against Frozen Enemies", statOrder = { 1241 }, level = 1, group = "IncreasedDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1196902248] = { "40% increased Damage with Hits against Frozen Enemies" }, } }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3349 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Causes Bleeding when you Stun", statOrder = { 2489 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1562912554] = { "Causes Bleeding when you Stun" }, } }, - ["GrantEnemiesUnholyMightOnKillUnique__1"] = { affix = "", "5% chance to grant Chaotic Might to nearby Enemies on Kill", statOrder = { 3388 }, level = 1, group = "GrantEnemiesUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607444087] = { "5% chance to grant Chaotic Might to nearby Enemies on Kill" }, } }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3387 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["UnholyMightOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5706 }, level = 20, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [562371749] = { "10% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5700 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__6"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1756 }, 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 = { 1755 }, 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 = { 1755 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, } }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Manifested Dancing Dervishes disables both weapon slots", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3345, 3346, 3347 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Manifested Dancing Dervishes disables both weapon slots" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3399 }, 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 = { 3398 }, 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 = { 3400 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4880 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Strength" }, } }, - ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3401 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3408 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHashes = { [607839150] = { "Nearby Enemies are Hindered, with 25% reduced Movement Speed" }, } }, - ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 516 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, - ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 517 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 517 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 518 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1991958615] = { "Socketed Gems are Supported by Level 15 Cold Penetration" }, } }, - ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 519 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 1 Mana Leech" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 523 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Cold Damage", statOrder = { 523 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 29 Added Cold Damage" }, } }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 524 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 524 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByBonechillUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Bonechill", statOrder = { 240 }, level = 1, group = "DisplaySupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1859244771] = { "Socketed Gems are Supported by Level 15 Bonechill" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3411 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3411 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["AddedFireDamageFromLightRadiusUnique__1"] = { affix = "", "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value", statOrder = { 9242 }, level = 1, group = "AddedFireDamageFromLightRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1911822529] = { "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value" }, } }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits and Ailments against Hindered Enemies", statOrder = { 4112 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits and Ailments against Hindered Enemies" }, } }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3432 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3968454273] = { "Gain Soul Eater during any Flask Effect" }, } }, - ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3433 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3577316952] = { "Lose all Eaten Souls when you use a Flask" }, } }, - ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 768 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4240751513] = { "Trigger Level 1 Fire Burst on Kill" }, } }, - ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 534, 534.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2497009514] = { "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled" }, } }, - ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 629 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 7950 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4249200326] = { "Implicit Modifier magnitudes are doubled" }, } }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 7951 }, level = 1, group = "LocalTripleImplicitMagnitudes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3910859570] = { "Implicit Modifier magnitudes are tripled" }, } }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3573 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3919199754] = { "100% increased Damage with Unarmed Attacks against Bleeding Enemies" }, } }, - ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3577 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2865232420] = { "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3576 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3575 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3148570142] = { "Gain 30 Life per Bleeding Enemy Hit" }, } }, - ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 796 }, 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 = { 796 }, 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 = { 796 }, 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 = { 750 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon" }, [2795142527] = { "" }, } }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1431 }, 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 = { 1308 }, 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 = { 1284 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "40% increased Physical Attack Damage while Dual Wielding" }, } }, - ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3586 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3578 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2988055461] = { "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills" }, } }, - ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", statOrder = { 3579 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills" }, } }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3582 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1912660783] = { "50% slower start of Energy Shield Recharge during any Flask Effect" }, } }, - ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3584 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1827657795] = { "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect" }, } }, - ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3589 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4150597533] = { "1% increased Cold Damage per 1% Chance to Block Attack Damage" }, } }, - ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3590 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3645234093] = { "1% increased Maximum Mana per 2% Chance to Block Spell Damage" }, } }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3591 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1857635068] = { "300% increased Armour while Chilled or Frozen" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks" }, } }, - ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1839 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3608 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3608 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2757 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3590104875] = { "You lose all Endurance Charges on reaching maximum Endurance Charges" }, } }, - ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach Maximum Power Charges", statOrder = { 3609 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach Maximum Power Charges" }, } }, - ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 786 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [4125471110] = { "20% chance to Trigger Level 16 Molten Burst on Melee Hit" }, } }, - ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2986 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, - ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 3169 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1415558356] = { "Nearby Enemies take 50 Lightning Damage per second" }, } }, - ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3752 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3003321700] = { "Flasks do not apply to you" }, } }, - ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3753 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [3127641775] = { "Flasks you Use apply to your Raised Zombies and Spectres" }, } }, - ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 767 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of Life per second while Frozen", statOrder = { 3746 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of Life per second while Frozen" }, } }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "Retaliation Skills have 100% chance to Knockback", statOrder = { 3628 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "Retaliation Skills have 100% chance to Knockback" }, } }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "(25-35)% chance for Energy Shield Recharge to start when you Block", statOrder = { 3427 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "(25-35)% chance for Energy Shield Recharge to start when you Block" }, } }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3800 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3765 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [625037258] = { "Attacks with this Weapon deal Double Damage to Chilled Enemies" }, } }, - ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, - ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3770 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3905661226] = { "(60-80)% increased Damage while you have no Frenzy Charges" }, } }, - ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3771 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, - ["CriticalStrikeAttackLifeLeechUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life on Critical Strike", statOrder = { 3772 }, level = 1, group = "CriticalStrikeAttackLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2100196861] = { "1% of Attack Damage Leeched as Life on Critical Strike" }, } }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3773 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (12-16) additional Attack Physical Damage" }, } }, - ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Lightning Damage", statOrder = { 3781 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1096897481] = { "Gain 15% of Physical Attack Damage as Extra Lightning Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3779 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain 15% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3779 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3782 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3788706881] = { "+2 maximum Energy Shield per 5 Strength" }, } }, - ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+3 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "-1 to maximum number of Summoned Golems" }, } }, - ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 631 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10805 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3784 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1524882321] = { "Counts as all One Handed Melee Weapon Types" }, } }, - ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 501 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 12 Fortify" }, } }, - ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3374 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["CannotBePoisonedUnique__2"] = { affix = "", "Cannot be Poisoned", statOrder = { 3374 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(50-100)% increased Energy Shield Recovery rate" }, } }, - ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 2243 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3800 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3803 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [555311393] = { "2% increased Physical Damage Over Time per 10 Dexterity" }, } }, - ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3804 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [1030835421] = { "1% increased Bleeding Duration per 12 Intelligence" }, } }, - ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3806 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2072206041] = { "30% Chance to cause Bleeding Enemies to Flee on hit" }, } }, - ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, - ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3412 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "15% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 4132 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4148932984] = { "Create Consecrated Ground when you Shatter an Enemy" }, } }, - ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 3180 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 525 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 22 Blasphemy" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 525 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 619 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 619 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 80% increased Reservation Efficiency" }, } }, - ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3389 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3390 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to nearby Allies on Hit" }, } }, - ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 789 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 4133 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931560398] = { "Glows while in an Area containing a Unique Fish" }, } }, - ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 4138 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3418949024] = { "Attacks with this Weapon Maim on hit" }, } }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7993 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critically Strike Shocked Enemies", statOrder = { 4141 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critically Strike Shocked Enemies" }, } }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Strikes against non-Shocked Enemies", statOrder = { 4142 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Strikes against non-Shocked Enemies" }, } }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 4159 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, - ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 4158 }, 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 = { 529 }, 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 = { 4160 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1830 }, 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 = { 1830 }, 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 = { 9850 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, - ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 6055 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4907 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9429 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, - ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 4320 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4052714663] = { "10% increased Physical Damage taken while moving" }, } }, - ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 4318 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9247 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5833 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9847 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9847 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9883 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ReflectsShockToEnemiesInRadiusUnique__1"] = { affix = "", "Reflect Shocks applied to you to all Nearby Enemies", statOrder = { 9884 }, level = 1, group = "ReflectsShockToEnemiesInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [615884286] = { "Reflect Shocks applied to you to all Nearby Enemies" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5734 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6763 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5817 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5817 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled Enemies on Hit", statOrder = { 5221 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } }, - ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1765 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [1678831767] = { "Recover (250-500) Life when you Block" }, } }, - ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Crushing Fist Skill", statOrder = { 661 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Crushing Fist Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of Life on Killing a Poisoned Enemy", statOrder = { 9369 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of Life on Killing a Poisoned Enemy" }, } }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3610 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2732344760] = { "Gain a Frenzy Charge on reaching Maximum Power Charges" }, } }, - ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 660 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 660 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4504 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate Enemies on Block", statOrder = { 9609 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3179 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3179 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 770 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2634885412] = { "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy" }, } }, - ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 816 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4918 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit by an Attack", statOrder = { 9832 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2155467472] = { "50% chance to be inflicted with Bleeding when Hit by an Attack" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4768 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6491 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5924 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4700 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, - ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 1382 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "50% increased Lightning Damage" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9164 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9164 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["GlobalIgniteProlifUnique__1"] = { affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, - ["GlobalIgniteProlifUnique__2"] = { affix = "", "Ignites you inflict spread to other Enemies within 2.8 metres", statOrder = { 2223 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.8 metres" }, } }, - ["LocalIgniteProlifEmberglowUnique__1"] = { affix = "", "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres", statOrder = { 7934 }, level = 1, group = "LocalIgniteProlifEmberglow", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1010930352] = { "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres" }, } }, - ["IgniteDurationEmberglowUnique__1"] = { affix = "", "50% less Duration of Ignites you inflict", statOrder = { 6360 }, level = 1, group = "IgniteDurationEmberglowUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3775619537] = { "50% less Duration of Ignites you inflict" }, } }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3145 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, - ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 75 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3192592092] = { "Sockets cannot be modified" }, } }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7874 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, - ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2529 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Strike", statOrder = { 777 }, 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 = { 777 }, 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 = { 4027 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4721 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, - ["MinionLeechOnPoisonedEnemiesUnique__1"] = { affix = "", "Minions Leech 5% of Damage as Life against Poisoned Enemies", statOrder = { 9316 }, level = 1, group = "MinionLeechOnPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [548721233] = { "Minions Leech 5% of Damage as Life against Poisoned Enemies" }, } }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3486, 3486.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage" }, } }, - ["ChilledGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Chilled Ground", statOrder = { 5778 }, level = 1, group = "ChilledGroundEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2134166669] = { "(30-50)% increased Effect of Chilled Ground" }, } }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3720 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, - ["KeystoneMinionInstabilityUnique__1"] = { affix = "", "Minion Instability", statOrder = { 10797 }, level = 1, group = "MinionInstability", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, - ["KeystoneConduitUnique__1__"] = { affix = "", "Conduit", statOrder = { 10774 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10766 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneIronReflexesUnique__1"] = { affix = "", "Iron Reflexes", statOrder = { 10792 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["KeystoneResoluteTechniqueUnique__1"] = { affix = "", "Resolute Technique", statOrder = { 10827 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["KeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10819 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystonePainAttunementUnique__1"] = { affix = "", "Pain Attunement", statOrder = { 10799 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["KeystoneElementalEquilibriumUnique__1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10780 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneElementalEquilibriumSceptreImplicit1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10780 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10815 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["KeystonePointBlankUnique__1"] = { affix = "", "Point Blank", statOrder = { 10800 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["KeystoneArrowDodgingUnique__1"] = { affix = "", "Arrow Dancing", statOrder = { 10803 }, level = 1, group = "ArrowDodging", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, - ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10766 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneGhostReaverUnique__1"] = { affix = "", "Ghost Reaver", statOrder = { 10786 }, level = 1, group = "KeystoneGhostReaver", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, - ["KeystoneVaalPactUnique__1"] = { affix = "", "Vaal Pact", statOrder = { 10820 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneZealotsOathUnique__1_"] = { affix = "", "Zealot's Oath", statOrder = { 10805 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["KeystoneMindOverMatterUnique__1"] = { affix = "", "Mind Over Matter", statOrder = { 10795 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["KeystoneElementalOverloadUnique__1"] = { affix = "", "Elemental Overload", statOrder = { 10781 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneElementalOverloadSceptreImplicit1_"] = { affix = "", "Elemental Overload", statOrder = { 10781 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneAvatarOfFireUnique__1"] = { affix = "", "Avatar of Fire", statOrder = { 10769 }, level = 1, group = "AvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, - ["KeystoneEldritchBatteryUnique__1"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneEldritchBatteryUnique__2"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneAncestralBondUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10768 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10768 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneCrimsonDanceUnique__1"] = { affix = "", "Crimson Dance", statOrder = { 10776 }, level = 1, group = "CrimsonDance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, - ["KeystonePerfectAgonyUnique__1"] = { affix = "", "Perfect Agony", statOrder = { 10767 }, level = 1, group = "PerfectAgony", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, - ["KeystoneRunebinderUnique__1"] = { affix = "", "Runebinder", statOrder = { 10807 }, level = 1, group = "Runebinder", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["KeystoneWickedWardUnique__1"] = { affix = "", "Wicked Ward", statOrder = { 10823 }, level = 1, group = "WickedWard", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, - ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10787 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["KeystoneCallToArmsUnique__1"] = { affix = "", "Call to Arms", statOrder = { 10772 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["KeystoneEternalYouthUnique__1"] = { affix = "", "Eternal Youth", statOrder = { 10783 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneWindDancerUnique__1_"] = { affix = "", "Wind Dancer", statOrder = { 10824 }, level = 1, group = "WindDancer", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, - ["KeystoneTheAgnosticUnique__1_"] = { affix = "", "The Agnostic", statOrder = { 10798 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneTheAgnosticUnique__2"] = { affix = "", "The Agnostic", statOrder = { 10798 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneSupremeEgoUnique__1_"] = { affix = "", "Supreme Ego", statOrder = { 10816 }, level = 1, group = "SupremeEgo", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, - ["KeystoneSacredBastionUnique__1"] = { affix = "", "Imbalanced Guard", statOrder = { 10808 }, level = 1, group = "SacredBastion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, - ["KeystoneTheImpalerUnique__1_"] = { affix = "", "The Impaler", statOrder = { 10791 }, level = 1, group = "Impaler", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, - ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10814 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique_1"] = { affix = "", "Corrupted Soul", statOrder = { 10775 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneDoomsdayUnique__1"] = { affix = "", "Hex Master", statOrder = { 10789 }, level = 1, group = "HexMaster", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, - ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10814 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10775 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10820 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10783 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10777 }, level = 1, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2321346567] = { "Divine Flesh" }, } }, - ["KeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10784 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["KeystoneShepherdOfSoulsUnique__1"] = { affix = "", "Shepherd of Souls", statOrder = { 10812 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["KeystoneLetheShadeUnique_1"] = { affix = "", "Lethe Shade", statOrder = { 10793 }, level = 1, group = "LetheShade", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, - ["KeystoneGhostDanceUnique__1"] = { affix = "", "Ghost Dance", statOrder = { 10785 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["KeystoneVersatileCombatantUnique___1"] = { affix = "", "Versatile Combatant", statOrder = { 10821 }, level = 1, group = "VersatileCombatant", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, - ["KeystoneMagebaneUnique_1"] = { affix = "", "Magebane", statOrder = { 10794 }, level = 1, group = "Magebane", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, - ["KeystoneSolipsismUnique_1"] = { affix = "", "Solipsism", statOrder = { 10813 }, level = 1, group = "Solipsism", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, - ["KeystoneDivineShieldUnique_1"] = { affix = "", "Divine Shield", statOrder = { 10778 }, level = 1, group = "DivineShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, - ["KeystoneIronWillUnique_1"] = { affix = "", "Iron Will", statOrder = { 10828 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["KeystonePreciseTechniqueUnique__1"] = { affix = "", "Precise Technique", statOrder = { 10801 }, level = 1, group = "PreciseTechnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4096273663] = { "Precise Technique" }, } }, - ["KeystoneSupremeDecadenceUnique__1"] = { affix = "", "Supreme Decadence", statOrder = { 10782 }, level = 1, group = "SupremeDecadence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3215997147] = { "Supreme Decadence" }, } }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3393 }, 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 = { 4173 }, 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 = { 4175 }, 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 = { 761, 761.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 4190 }, 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 = { 4189 }, 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 = { 2727 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Strike Multiplier per Green Socket" }, } }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2722 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3025389409] = { "0.3% of Physical Attack Damage Leeched as Life per Red Socket" }, } }, - ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 4137 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [990219738] = { "1% increased Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 4180 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1275066948] = { "4% increased Melee Damage per Endurance Charge" }, } }, - ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4183 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798111687] = { "You cannot be Shocked while at maximum Endurance Charges" }, } }, - ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 4179 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067429236] = { "50% increased Stun Duration on you" }, } }, - ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 4192 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "35% less Damage taken if you have not been Hit Recently" }, } }, - ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4193 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've Warcried Recently", statOrder = { 4184 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've Warcried Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've Warcried Recently", statOrder = { 4184 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've Warcried Recently" }, } }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 4182 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second" }, } }, - ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 4178 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, - ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 4188 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3992153900] = { "25% increased Movement Skill Mana Cost" }, } }, - ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4947 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [115351487] = { "30% chance to Avoid Elemental Ailments while Phasing" }, } }, - ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, - ["AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1701 }, level = 1, group = "AttackDamageLifeLeechAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1625933063] = { "1% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4186 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "1% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2"] = { affix = "", "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4186 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 4176 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3122365625] = { "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies" }, } }, - ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 4177 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, - ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1831 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, - ["CriticalStrikesDoNotFreezeUnique___1"] = { affix = "", "Critical Strikes do not inherently Freeze", statOrder = { 2036 }, level = 1, group = "CriticalStrikesDoNotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, tradeHashes = { [3979476531] = { "Critical Strikes do not inherently Freeze" }, } }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1828 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2230931659] = { "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy" }, } }, - ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2509 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2632954025] = { "You have Phasing if Energy Shield Recharge has started Recently" }, } }, - ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2510 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, - ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 4194 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1440638174] = { "+5% Chance to Block Attack Damage from Taunted Enemies" }, } }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 4197 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3669898891] = { "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently" }, } }, - ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 538 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1936441365] = { "Socketed Skills Summon your maximum number of Totems in formation" }, } }, - ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 4181 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 4187 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3204585690] = { "Totems have 5% increased Cast Speed per Summoned Totem" }, } }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 4199 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Totems have 5% increased Attack Speed per Summoned Totem" }, } }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 4200 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2466604008] = { "Attacks Chain an additional time when in Main Hand" }, } }, - ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 4202 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2105048696] = { "Attacks fire an additional Projectile when in Off Hand" }, } }, - ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4210 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Retaliation Skills" }, } }, - ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4206 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2217962305] = { "(8-12)% increased Maximum Life if no Equipped Items are Corrupted" }, } }, - ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 4207 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2497198283] = { "Regenerate 400 Life per second if no Equipped Items are Corrupted" }, } }, - ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 4208 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4156715241] = { "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted" }, } }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 8193 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (29-37) Chaos Damage" }, } }, - ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (48-53) to (58-60) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__7"] = { affix = "", "Adds (7-11) to (17-23) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (7-11) to (17-23) Chaos Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (12-16) to (20-25) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds (8-12) to (14-20) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-12) to (14-20) Physical Damage" }, } }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-24) to (33-36) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (22-27) to (34-38) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__6"] = { affix = "", "Adds (10-14) to (26-34) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (10-14) to (26-34) Fire Damage" }, } }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-24) to (33-36) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-23) to (31-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__5"] = { affix = "", "Adds (8-12) to (18-26) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (8-12) to (18-26) Cold Damage" }, } }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (10-13) to (43-47) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-3) to (47-52) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1384 }, 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 = { 1384 }, 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 = { 1806 }, 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 = { 2201 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2319377249] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2605 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 4212 }, 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 = { 4213 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2208857094] = { "Always Poison on Hit against Cursed Enemies" }, } }, - ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2954 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+20% chance to be Shocked" }, } }, - ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2954 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, - ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2736 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [967108924] = { "8% increased Global Defences per White Socket" }, } }, - ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 4215 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1498954300] = { "(10-15)% increased Quantity of Items found with a Magic Item Equipped" }, } }, - ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 4214 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [4151190513] = { "(80-100)% increased Rarity of Items found with a Normal Item Equipped" }, } }, - ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 4251 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3266394681] = { "Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 4195 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9309 }, 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 = { 4196 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [1236638414] = { "Minions gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 4247 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1894653141] = { "0% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, [543539632] = { "30% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy" }, } }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 4249 }, 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 = { 4248 }, 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 = { 4248 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover (20-30) Life when your Trap is triggered by an Enemy" }, } }, - ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3605 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3738335639] = { "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" }, } }, - ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4220 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4220 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 4264 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, - ["LifeLeechVsCursedEnemiesUnique__1"] = { affix = "", "1% of Damage Leeched as Life against Cursed Enemies", statOrder = { 4265 }, level = 1, group = "LifeLeechVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3861913659] = { "1% of Damage Leeched as Life against Cursed Enemies" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4266 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4266 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 415 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3425526049] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 530 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Your Cold Damage can Ignite", statOrder = { 2887 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3573591118] = { "Your Cold Damage can Ignite" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4738 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448279015] = { "2% increased Area of Effect per Endurance Charge" }, } }, - ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3569 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "50% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3569 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3779 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__4"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (10-50)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsLightningUnique__1"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (10-50)% of Physical Damage as Extra Lightning Damage" }, } }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3319 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1464115829] = { "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed" }, } }, - ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1901 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [289885185] = { "Chaos Skills have 40% increased Skill Effect Duration" }, } }, - ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 3175 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-20)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 3175 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__3"] = { affix = "", "(10-25)% increased Poison Duration", statOrder = { 3175 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-25)% increased Poison Duration" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4267 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4267 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4267 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["BleedOnMeleeHitChanceUnique__1"] = { affix = "", "Melee Attacks have (30-50)% chance to cause Bleeding", statOrder = { 2492 }, level = 1, group = "BleedOnMeleeHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1285056331] = { "Melee Attacks have (30-50)% chance to cause Bleeding" }, } }, - ["ArmourAndEvasionImplicitBelt1"] = { affix = "", "+(260-320) to Armour and Evasion Rating", statOrder = { 4271 }, level = 98, group = "ArmourAndEvasionRatingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(260-320) to Armour and Evasion Rating" }, } }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1953 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Strikes", statOrder = { 4282 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Strikes" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Strike", statOrder = { 4283 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Strike" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Strike", statOrder = { 4283 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Strike" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7878 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 4281 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2562665460] = { "Stun Threshold is based on Energy Shield instead of Life" }, } }, - ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes", statOrder = { 4293 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Strikes" }, } }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 4294 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, - ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 4295 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3134790305] = { "Enemies you Shock have 20% reduced Movement Speed" }, } }, - ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 4305 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3919557483] = { "100% increased Burning Damage if you've Ignited an Enemy Recently" }, } }, - ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of Life when you Ignite an Enemy", statOrder = { 4306 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of Life when you Ignite an Enemy" }, } }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 4307 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1332534089] = { "100% increased Melee Physical Damage against Ignited Enemies" }, } }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9512 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 8154 }, 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 = { 5545, 8520 }, 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 = { 8516, 8517 }, 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 = { 6213, 8521 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4004160031] = { "" }, [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8518, 8519 }, 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 = { 6974 }, 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 = { 6972 }, level = 1, group = "HeistBlueprintRewardAlwaysExperimented", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4182516619] = { "Heist Targets are always Experimented Items" }, } }, - ["HeistBlueprintRewardAlwaysEnchanted"] = { affix = "", "Heist Targets are always Enchanted Armaments", statOrder = { 6971 }, level = 1, group = "HeistBlueprintRewardAlwaysEnchanted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3709545805] = { "Heist Targets are always Enchanted Armaments" }, } }, - ["HeistBlueprintRewardAlwaysCurrencyScarab"] = { affix = "", "Heist Targets are always Currency or Scarabs", statOrder = { 6970 }, level = 1, group = "HeistBlueprintRewardAlwaysCurrencyScarab", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4168369352] = { "Heist Targets are always Currency or Scarabs" }, } }, - ["HeistBlueprintRewardAlwaysTrinket"] = { affix = "", "Heist Targets are always Thieves' Trinkets", statOrder = { 6973 }, level = 1, group = "HeistBlueprintRewardAlwaysTrinket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123534836] = { "Heist Targets are always Thieves' Trinkets" }, } }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Strike Chance with arrows that Fork", statOrder = { 4308 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Strike Chance with arrows that Fork" }, } }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 4311 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, - ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 4310 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1812251528] = { "Arrows that Pierce have 50% chance to inflict Bleeding" }, } }, - ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4313 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, - ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 4312 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1011373762] = { "Spells fire an additional Projectile" }, } }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9299 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3756 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Strike Chance against Chilled Enemies", statOrder = { 6878 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Strike Chance against Chilled Enemies" }, } }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 832 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4840 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4840 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4840 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Your Physical Damage can Shock", statOrder = { 2886 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Your Physical Damage can Shock" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6147 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6147 }, 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 = { 6579 }, 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 = { 7374 }, level = 1, group = "FireDamageLeechedAsLifeWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3633399302] = { "2% of Fire Damage Leeched as Life while Ignited" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9406 }, 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 = { 6801 }, 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 = { 3477 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, - ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2162876159] = { "(14-18)% increased Projectile Attack Damage" }, } }, - ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 2027 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [507075051] = { "+1 Mana per 4 Strength" }, } }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6447 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, - ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 2026 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2042405614] = { "+1 Life per 4 Dexterity" }, } }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 9199 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, - ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+2 Accuracy Rating per 2 Intelligence", statOrder = { 2025 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+2 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6481 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5696 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9753 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9754 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, - ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4956 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10853 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2912 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10718 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4505 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 10148 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently", statOrder = { 10144 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Strikes deal no Damage", statOrder = { 5984 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Strikes deal no Damage" }, } }, - ["LocalNoCriticalStrikeMultiplierUnique_1"] = { affix = "", "Critical Strikes with this Weapon do not deal extra Damage", statOrder = { 1495 }, level = 1, group = "LocalCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1508661598] = { "Critical Strikes with this Weapon do not deal extra Damage" }, } }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 4321 }, level = 1, group = "IncreasedManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 4319 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5779 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9490 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9490 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5953 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5953 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6380 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1754 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1754 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1754 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3194 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage" }, } }, - ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4860 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5683 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6797 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7957 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, - ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 787 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3844016207] = { "100% chance to Trigger Level 1 Raise Spiders on Kill" }, } }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5434 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10165 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10856 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6568 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit", statOrder = { 8007 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit", statOrder = { 8007 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8007 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8007 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 3178 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10157 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, - ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4571 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6793 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9357 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9539 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ZombiesLeechLifeToYouAt1000StrengthUnique__1"] = { affix = "", "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life", statOrder = { 10753 }, level = 1, group = "ZombiesLeechLifeToYouAt1000Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2802263253] = { "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4999 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7310 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7222 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 9159 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7411 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10695 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 9161 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 6065 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7309 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9423 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10564 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, - ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3478 }, 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 = { 3199 }, 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 = { 3201 }, 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 = { 10814 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, - ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 531 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["DisplayGrantsVengeanceUnique__1"] = { affix = "", "Grants Level 15 Battlemage's Cry Skill", statOrder = { 694 }, level = 1, group = "BattlemagesCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2356594418] = { "Grants Level 15 Battlemage's Cry Skill" }, } }, - ["CannotLeechLifeUnique__1"] = { affix = "", "Cannot Leech Life", statOrder = { 2572 }, level = 1, group = "CannotLeechLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, - ["AllResistanceAt200StrengthUnique__1"] = { affix = "", "+(20-25)% to all Elemental Resistances while you have at least 200 Strength", statOrder = { 4367 }, level = 1, group = "AllResistanceAt200Strength", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2415398184] = { "+(20-25)% to all Elemental Resistances while you have at least 200 Strength" }, } }, - ["LifeRegenerationAt400StrengthUnique__1"] = { affix = "", "Regenerate 2% of Life per second with at least 400 Strength", statOrder = { 7432 }, level = 1, group = "LifeRegenerationAt400Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1173027373] = { "Regenerate 2% of Life per second with at least 400 Strength" }, } }, - ["LifeRegenerationIfHitRecentlyUnique__1"] = { affix = "", "Regenerate 2% of Life per second if you have been Hit Recently", statOrder = { 7420 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 2% of Life per second if you have been Hit Recently" }, } }, - ["AttackBlockIfBlockedSpellRecentlyUnique__1_"] = { affix = "", "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", statOrder = { 4842 }, level = 1, group = "AttackBlockIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [647983250] = { "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently" }, } }, - ["SpellBlockIfBlockedAttackRecentlyUnique__1"] = { affix = "", "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently", statOrder = { 10133 }, level = 1, group = "SpellBlockIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1214153650] = { "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__1_"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10126 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__2"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10126 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["GainPowerChargesOnUsingWarcryUnique__1"] = { affix = "", "Gain 2 Power Charges when you Warcry", statOrder = { 6709 }, level = 1, group = "GainPowerChargesOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4118945608] = { "Gain 2 Power Charges when you Warcry" }, } }, - ["AttackLeechAgainstTauntedEnemyUnique__1"] = { affix = "", "2% of Attack Damage Leeched as Life against Taunted Enemies", statOrder = { 7372 }, level = 1, group = "AttackLeechAgainstTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3750917270] = { "2% of Attack Damage Leeched as Life against Taunted Enemies" }, } }, - ["WarcryCooldownSpeedUnique__1"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedUnique__2"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryEffectUnique__1"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10565 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["WarcryEffectUnique__2"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10565 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["OnslaughtOnUsingWarcryUnique__1"] = { affix = "", "Gain Onslaught for 4 seconds when you Warcry", statOrder = { 6788 }, level = 1, group = "OnslaughtOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049436415] = { "Gain Onslaught for 4 seconds when you Warcry" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Adds 40 to 60 Cold Damage against Chilled Enemies", statOrder = { 9236 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 40 to 60 Cold Damage against Chilled Enemies" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__2"] = { affix = "", "Adds 60 to 80 Cold Damage against Chilled Enemies", statOrder = { 9236 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 60 to 80 Cold Damage against Chilled Enemies" }, } }, - ["CannotBeShockedWhileChilledUnique__1"] = { affix = "", "100% chance to Avoid being Shocked while Chilled", statOrder = { 4957 }, level = 1, group = "AvoidShockWhileChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3981960937] = { "100% chance to Avoid being Shocked while Chilled" }, } }, - ["ChanceToShockChilledEnemiesUnique__1"] = { affix = "", "50% chance to Shock Chilled Enemies", statOrder = { 5726 }, level = 1, group = "ChanceToShockChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4069101408] = { "50% chance to Shock Chilled Enemies" }, } }, - ["AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4950 }, level = 1, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3706656107] = { "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently" }, } }, - ["HeraldOfThunderBuffEffectUnique__1"] = { affix = "", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 7130 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has 50% increased Buff Effect" }, } }, - ["LifeRegenerationPerLevelUnique__1"] = { affix = "", "Regenerate 3 Life per second per Level", statOrder = { 2966 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 3 Life per second per Level" }, } }, - ["TotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4242 }, level = 1, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3812562802] = { "0.5% of Damage dealt by your Totems is Leeched to you as Life" }, } }, - ["TriggeredConsecrateUnique__1"] = { affix = "", "Trigger Level 10 Consecrate when you deal a Critical Strike", statOrder = { 680 }, level = 1, group = "TriggeredConsecrate", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [899293871] = { "Trigger Level 10 Consecrate when you deal a Critical Strike" }, } }, - ["HallowOnHitVsConsecratedEnemyUnique__1"] = { affix = "", "Inflict Hallowing Flame on Hit while on Consecrated Ground", statOrder = { 7282 }, level = 1, group = "HallowOnHitVsConsecratedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3087629547] = { "Inflict Hallowing Flame on Hit while on Consecrated Ground" }, } }, - ["IncreasedDamageOnConsecratedGroundUnique__1"] = { affix = "", "50% increased Damage while on Consecrated Ground", statOrder = { 3557 }, level = 1, group = "IncreasedDamageOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1704905020] = { "50% increased Damage while on Consecrated Ground" }, } }, - ["BlockChanceOnConsecratedGroundUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while on Consecrated Ground", statOrder = { 4550 }, level = 1, group = "BlockChanceOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3865999868] = { "+5% Chance to Block Attack Damage while on Consecrated Ground" }, } }, - ["ChillEnemiesOnHitWithWeaponUnique__1"] = { affix = "", "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand", statOrder = { 7881 }, level = 1, group = "ChillEnemiesOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [1488891279] = { "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand" }, } }, - ["SupportFlatAddedFireDamageUnique__1"] = { affix = "", "Socketed Gems deal 63 to 94 Added Fire Damage", statOrder = { 561 }, level = 1, group = "SupportFlatAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 63 to 94 Added Fire Damage" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__1_"] = { affix = "", "Adds 1 to 2 Physical Damage to Attacks per Level", statOrder = { 4881 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 1 to 2 Physical Damage to Attacks per Level" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__2"] = { affix = "", "Adds 2 to 3 Physical Damage to Attacks per Level", statOrder = { 4881 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 2 to 3 Physical Damage to Attacks per Level" }, } }, - ["RightRingSlotMaximumManaUnique__1"] = { affix = "", "Right ring slot: +250 to maximum Mana", statOrder = { 2655 }, 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 = { 2676 }, 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 = { 2664 }, 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 = { 7913 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877479250] = { "" }, [2899095498] = { "Nearby Enemies are Intimidated" }, } }, - ["NearbyAlliesMovementVelocityUnique__1"] = { affix = "", "10% increased Movement Speed for you and nearby Allies", statOrder = { 7905 }, 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 = { 3604 }, 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 = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (0-20)% Elemental Resistances" }, } }, - ["IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1"] = { affix = "", "150% increased Elemental Damage if you've Warcried Recently", statOrder = { 6308 }, level = 1, group = "IncreasedElementalDamageIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2803182108] = { "150% increased Elemental Damage if you've Warcried Recently" }, } }, - ["TriggeredAnimateWeaponUnique__1"] = { affix = "", "25% chance to Trigger Level 20 Animate Weapon on Kill", statOrder = { 771 }, level = 1, group = "TriggeredAnimateWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1973890509] = { "25% chance to Trigger Level 20 Animate Weapon on Kill" }, } }, - ["AddedFireDamagePerStrengthUnique__1"] = { affix = "", "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 1, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["LocalGolemBuffEffectUnique__1"] = { affix = "", "25% increased Effect of Buffs granted by Socketed Golem Skills", statOrder = { 203 }, level = 1, group = "LocalGolemBuffEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2813516522] = { "25% increased Effect of Buffs granted by Socketed Golem Skills" }, } }, - ["LocalGolemLifeAddedAsESUnique__1"] = { affix = "", "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 207 }, level = 1, group = "LocalGolemLifeAddedAsES", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "defences", "energy_shield", "minion", "gem" }, tradeHashes = { [1199118714] = { "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["LocalGolemIncreasedAttackAndCastSpeedUnique__1"] = { affix = "", "Socketed Golem Skills have 20% increased Attack and Cast Speed", statOrder = { 202 }, level = 1, group = "LocalGolemIncreasedAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "minion", "gem" }, tradeHashes = { [706212417] = { "Socketed Golem Skills have 20% increased Attack and Cast Speed" }, } }, - ["LocalGolemGrantOnslaughtOnSummonUnique__1"] = { affix = "", "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill", statOrder = { 206 }, level = 1, group = "LocalGolemGrantsOnslaughtOnSummon", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1693676706] = { "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill" }, } }, - ["LocalGolemTauntOnHitUnique__1_"] = { affix = "", "Socketed Golem Skills have 25% chance to Taunt on Hit", statOrder = { 204 }, level = 1, group = "LocalGolemTauntOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [178057093] = { "Socketed Golem Skills have 25% chance to Taunt on Hit" }, } }, - ["LocalGolemLifeRegenerationUnique__1"] = { affix = "", "Socketed Golem Skills have Minions Regenerate 5% of Life per second", statOrder = { 205 }, level = 1, group = "LocalGolemLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "minion", "gem" }, tradeHashes = { [693460617] = { "Socketed Golem Skills have Minions Regenerate 5% of Life per second" }, } }, - ["LocalVaalDamageUnique__1_"] = { affix = "", "Socketed Vaal Skills deal 150% more Damage", statOrder = { 577 }, level = 80, group = "LocalVaalDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [3106951888] = { "Socketed Vaal Skills deal 150% more Damage" }, } }, - ["LocalVaalSoulRequirementUnique__1"] = { affix = "", "Socketed Vaal Skills require 30% less Souls per Use", statOrder = { 586 }, level = 80, group = "LocalVaalSoulRequirement", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2198756560] = { "Socketed Vaal Skills require 30% less Souls per Use" }, } }, - ["LocalVaalUsesToStoreUnique__1"] = { affix = "", "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", statOrder = { 587 }, level = 80, group = "LocalVaalUsesToStore", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [207863952] = { "Socketed Vaal Skills have 20% chance to regain consumed Souls when used" }, } }, - ["LocalVaalIgnoreMonsterResistancesUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", statOrder = { 582 }, level = 80, group = "LocalVaalIgnoreMonsterResistances", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2540508981] = { "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances" }, } }, - ["LocalVaalIgnoreMonsterPhysicalReductionUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", statOrder = { 581 }, level = 80, group = "LocalVaalIgnoreMonsterPhysicalReduction", weightKey = { }, weightVal = { }, modTags = { "physical", "vaal" }, tradeHashes = { [1388374928] = { "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction" }, } }, - ["LocalVaalElusiveOnUseUnique__1_"] = { affix = "", "Socketed Vaal Skills grant Elusive when Used", statOrder = { 579 }, level = 80, group = "LocalVaalElusiveOnUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1831825995] = { "Socketed Vaal Skills grant Elusive when Used" }, } }, - ["LocalVaalTailwindIfUsedRecentlyUnique__1"] = { affix = "", "You have Tailwind if you've used a Socketed Vaal Skill Recently", statOrder = { 590 }, level = 80, group = "LocalVaalTailwindIfUsedRecently", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1678234826] = { "You have Tailwind if you've used a Socketed Vaal Skill Recently" }, } }, - ["LocalVaalAreaOfEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 60% increased Area of Effect", statOrder = { 575 }, level = 80, group = "LocalVaalAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2505291583] = { "Socketed Vaal Skills have 60% increased Area of Effect" }, } }, - ["LocalVaalProjectileSpeedUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Projectile Speed", statOrder = { 584 }, level = 80, group = "LocalVaalProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "vaal" }, tradeHashes = { [2237174578] = { "Socketed Vaal Skills have 80% increased Projectile Speed" }, } }, - ["LocalVaalSkillEffectDurationUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Skill Effect Duration", statOrder = { 578 }, level = 80, group = "LocalVaalSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [476204410] = { "Socketed Vaal Skills have 80% increased Skill Effect Duration" }, } }, - ["LocalVaalSoulGainPreventionUnique__1"] = { affix = "", "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration", statOrder = { 585 }, level = 80, group = "LocalVaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2599305231] = { "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration" }, } }, - ["LocalVaalLuckyDamageUnique__1"] = { affix = "", "Damage with Hits from Socketed Vaal Skills is Lucky", statOrder = { 580 }, level = 80, group = "LocalVaalLuckyDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [1274200851] = { "Damage with Hits from Socketed Vaal Skills is Lucky" }, } }, - ["LocalVaalAuraEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 50% increased Aura Effect", statOrder = { 576 }, level = 80, group = "LocalVaalAuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura", "vaal" }, tradeHashes = { [2932121832] = { "Socketed Vaal Skills have 50% increased Aura Effect" }, } }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7234 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6588 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, - ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 684 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, - ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 679 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 679 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["LifeGainedOnStunUnique__1_"] = { affix = "", "Gain 50 Life when you Stun an Enemy", statOrder = { 6708 }, level = 40, group = "LifeGainedOnStun", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2968301430] = { "Gain 50 Life when you Stun an Enemy" }, } }, - ["RyuslathaMinimumDamageModifierUnique__1"] = { affix = "", "(30-40)% less Minimum Physical Attack Damage", statOrder = { 1205 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1715495976] = { "(30-40)% less Minimum Physical Attack Damage" }, } }, - ["RyuslathaMaximumDamageModifierUnique__1_"] = { affix = "", "(30-40)% more Maximum Physical Attack Damage", statOrder = { 1204 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3029185248] = { "(30-40)% more Maximum Physical Attack Damage" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4658 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, - ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4549 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4595 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3218891195] = { "+20% Chance to Block Spell Damage while Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Life per Level", statOrder = { 7391 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+(1-2) Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Mana per Level", statOrder = { 8190 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+(1-2) Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Energy Shield per Level", statOrder = { 6446 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+(1-2) Maximum Energy Shield per Level" }, } }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 667 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["SandMirageSkillUnique__1"] = { affix = "", "Grants level 20 Suspend in Time", statOrder = { 7899 }, level = 1, group = "SandMirageSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3673812491] = { "Grants level 20 Suspend in Time" }, } }, - ["ResentmentFireDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Cinders when Equipped", statOrder = { 7901 }, level = 1, group = "ResentmentFireDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4015227054] = { "Trigger Level 20 Cinders when Equipped" }, } }, - ["AnimosityPhysDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Tears of Rot when Equipped", statOrder = { 7900 }, level = 1, group = "AnimosityPhysDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1714905437] = { "Trigger Level 20 Tears of Rot when Equipped" }, } }, - ["PhysicalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(28-35)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(28-35)% to Physical Damage over Time Multiplier" }, } }, - ["FireExposureOnHitVsMaxResentmentStacksUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance", statOrder = { 6585, 6585.1 }, level = 1, group = "FireExposureOnHitVsMaxResentmentStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403551644] = { "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7110 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, - ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4958 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 6056 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10019, 10019.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10476 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10476 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9279 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9325 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9367 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, - ["PoisonDamageUnique__1"] = { affix = "", "(40-60)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(40-60)% increased Damage with Poison" }, } }, - ["PoisonDamageUnique__2"] = { affix = "", "(100-150)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(100-150)% increased Damage with Poison" }, } }, - ["BleedDamageUnique__1_"] = { affix = "", "(40-60)% increased Damage with Bleeding", statOrder = { 3174 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(40-60)% increased Damage with Bleeding" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+2 to Level of Socketed Herald Gems" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, - ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 2061 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180687797] = { "15% increased Area of Effect while you have no Frenzy Charges" }, } }, - ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Strike Multiplier while you have no Frenzy Charges", statOrder = { 2060 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Strike Multiplier while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4527 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9403 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5813 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6567 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6780, 6780.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["FireDamageCanPoisonUnique__1"] = { affix = "", "Your Fire Damage can Poison", statOrder = { 2871 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Your Fire Damage can Poison" }, } }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Your Cold Damage can Poison", statOrder = { 2870 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Your Cold Damage can Poison" }, } }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Your Lightning Damage can Poison", statOrder = { 2872 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Your Lightning Damage can Poison" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6592 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5842 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7473 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, - ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 665 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, - ["AdditionalPhysicalDamageReductionUnique_1UNUSED"] = { affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["UniqueReducedExtraDamageFromCrits__1"] = { affix = "", "You take (150-200)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (150-200)% reduced Extra Damage from Critical Strikes" }, } }, - ["SpellDamageSuppressedUnique__1"] = { affix = "", "Prevent +(4-6)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 56, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(4-6)% of Suppressed Spell Damage" }, } }, - ["SpellDamageSuppressedUnique__2"] = { affix = "", "-10% to amount of Suppressed Spell Damage Prevented", statOrder = { 1146 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "-10% to amount of Suppressed Spell Damage Prevented" }, } }, - ["GrantsFrostbiteUnique__1"] = { affix = "", "Grants Level 5 Frostbite Skill", statOrder = { 642 }, level = 1, group = "FrostbiteSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 5 Frostbite Skill" }, } }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 635 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, - ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 635 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, - ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 635 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5745 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10826 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9335 }, 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 = { 9335 }, 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 = { 830 }, 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 = { 753 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1571803312] = { "" }, [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, [311420892] = { "" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6452 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, - ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3466 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(10-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges", statOrder = { 6542 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges" }, } }, - ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3476 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3492297134] = { "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, - ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 658 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 25 Blight Skill", statOrder = { 662 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 25 Blight Skill" }, } }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Brutality Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 638 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Brutality Skill" }, } }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5732 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, - ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 3176 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "50% less Poison Duration" }, } }, - ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Strike Chance", statOrder = { 4322 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Strike Chance" }, } }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 528 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, - ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 527 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, - ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 526 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, - ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 526 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 15 Innervate" }, } }, - ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 517 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 18 Ice Bite" }, } }, - ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 752 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 9233, 9233.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9686 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["PoisonDamagePerFrenzyChargeUnique__1"] = { affix = "", "10% increased Damage with Poison per Frenzy Charge", statOrder = { 9678 }, level = 1, group = "PoisonDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1221011086] = { "10% increased Damage with Poison per Frenzy Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6767 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6812 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9687 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["PoisonDamageWithOver300DexterityUnique__1"] = { affix = "", "(75-100)% increased Damage with Poison if you have at least 300 Dexterity", statOrder = { 9681 }, level = 1, group = "PoisonDamageWithOver300Dexterity", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [256730087] = { "(75-100)% increased Damage with Poison if you have at least 300 Dexterity" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10655 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10655 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7993 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 5176 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, - ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, - ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1573, 1583 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, - ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 754 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion", statOrder = { 4323 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Poison on Hit while you have a Bestial Minion", statOrder = { 4325 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks Poison on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Maim on Hit while you have a Bestial Minion", statOrder = { 4324 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks Maim on Hit while you have a Bestial Minion" }, } }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 4326 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion" }, } }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 4327 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 4328 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, - ["LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life against Maimed Enemies", statOrder = { 7371 }, level = 1, group = "LifeLeechFromAttackDamageAgainstMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [447636597] = { "0.5% of Attack Damage Leeched as Life against Maimed Enemies" }, } }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 751 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3670477918] = { "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell" }, } }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Effect of Shock", statOrder = { 10007 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Effect of Shock" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, - ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 96 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, - ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1087 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1087 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 169 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, - ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 170 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +30% to Quality" }, } }, - ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 171 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10367 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6563 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, - ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 628 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, - ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 634 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, - ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 636 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, - ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 729 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2700934265] = { "Grants Level 25 Vaal Impurity of Fire Skill" }, } }, - ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 730 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1300125165] = { "Grants Level 25 Vaal Impurity of Ice Skill" }, } }, - ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 731 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2959369472] = { "Grants Level 25 Vaal Impurity of Lightning Skill" }, } }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 10112 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Raised Spectres have (50-100)% increased maximum Life", statOrder = { 1775 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Raised Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1456 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8203 }, 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 = { 6818 }, 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 = { 5891, 5891.1, 5891.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 = { 109, 109.1, 109.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 = { 109, 467 }, 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 = { 109, 518 }, 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 = { 109, 517 }, 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 = { 109, 519 }, 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 = { 109, 523 }, 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 = { 109, 524 }, 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 = { 109, 485 }, 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 = { 109, 464 }, 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 = { 109, 491 }, 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 = { 109, 526 }, 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 = { 109, 528 }, 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 = { 109, 516 }, 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 = { 109, 488 }, 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 = { 109, 476 }, 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 = { 109, 486 }, 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 = { 109, 487 }, 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 = { 109, 502 }, 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 = { 109, 371 }, 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 = { 109, 484 }, 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 = { 109, 477 }, 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 = { 109, 482 }, 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 = { 109, 527 }, 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 = { 109, 492 }, 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 = { 109, 229 }, 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 = { 109, 507 }, 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 = { 109, 509 }, 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 = { 109, 513 }, 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 = { 109, 510 }, 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 = { 109, 511 }, 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 = { 109, 490 }, 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 = { 109, 475 }, 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 = { 109, 531 }, 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 = { 109, 525 }, 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 = { 109, 459 }, 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 = { 109, 506 }, 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 = { 109, 505 }, 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 = { 109, 503 }, 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 = { 109, 468 }, 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 = { 109, 469 }, 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 = { 109, 300 }, 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 = { 109, 318 }, 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 = { 109, 325 }, 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 = { 109, 326 }, 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 = { 109, 319 }, 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 = { 109, 250 }, 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 = { 109, 237 }, 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 = { 109, 329 }, 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 = { 109, 259 }, 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 = { 109, 359 }, 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 = { 109, 324 }, 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 = { 109, 341 }, 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 = { 109, 367 }, 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 = { 109, 282 }, 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 = { 109, 331 }, 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 = { 109, 248 }, 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 = { 109, 346 }, 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 = { 109, 361 }, 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 = { 109, 317 }, 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 = { 109, 389 }, 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 = { 109, 260 }, 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 = { 109, 245 }, 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 = { 109, 461 }, 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 = { 109, 274 }, 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 = { 109, 382 }, 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 = { 109, 370 }, 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 = { 109, 244 }, 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 = { 109, 276 }, 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 = { 109, 356 }, 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 = { 109, 277 }, 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 = { 109, 357 }, 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 = { 109, 462 }, 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 = { 109, 360 }, 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 = { 109, 405 }, 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 = { 109, 368 }, 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 = { 109, 460 }, 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 = { 109, 272 }, 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 = { 109, 342 }, 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 = { 109, 395 }, 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 = { 109, 247 }, 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 = { 109, 313 }, 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 = { 109, 249 }, 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 = { 109, 262 }, 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 = { 109, 264 }, 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 = { 109, 270 }, 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 = { 109, 336 }, 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 = { 109, 314 }, 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 = { 109, 398 }, 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 = { 109, 242 }, 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 = { 109, 375 }, 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 = { 109, 349 }, 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 = { 109, 231 }, 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 = { 109, 235 }, 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 = { 109, 366 }, 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 = { 109, 514 }, 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 = { 109, 474 }, 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 = { 109, 473 }, 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 = { 109, 500 }, 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 = { 109, 501 }, 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 = { 109, 471 }, 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 = { 109, 530 }, 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 = { 109, 458 }, 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 = { 109, 483 }, 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 = { 109, 472 }, 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 = { 109, 463 }, 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 = { 109, 369 }, 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 = { 109, 388 }, 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 = { 109, 355 }, 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 = { 109, 305 }, 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 = { 109, 384 }, 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 = { 109, 387 }, 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 = { 109, 390 }, 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 = { 109, 344 }, 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 = { 109, 290 }, 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 = { 109, 410 }, 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 = { 109, 240 }, 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 = { 109, 345 }, 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 = { 109, 275 }, 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 = { 109, 385 }, 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 = { 109, 401 }, 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 = { 109, 315 }, 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 = { 109, 363 }, 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 = { 109, 365 }, 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 = { 109, 252 }, 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 = { 109, 381 }, 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 = { 109, 281 }, 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 = { 109, 339 }, 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 = { 109, 263 }, 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 = { 109, 347 }, 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 = { 109, 320 }, 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 = { 109, 391 }, 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 = { 109, 251 }, 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 = { 109, 420 }, 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 = { 109, 422 }, 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 = { 109, 425 }, 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 = { 109, 426 }, 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 = { 109, 455 }, 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 = { 109, 438 }, 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 = { 109, 440 }, 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 = { 109, 444 }, 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 = { 109, 445 }, 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 = { 109, 447 }, 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 = { 109, 419 }, 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 = { 109, 423 }, 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 = { 109, 427 }, 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 = { 109, 429 }, 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 = { 109, 430 }, 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 = { 109, 433 }, 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 = { 109, 439 }, 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 = { 109, 441 }, 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 = { 109, 450 }, 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 = { 109, 454 }, 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 = { 109, 453 }, 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 = { 109, 418 }, 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 = { 109, 421 }, 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 = { 109, 424 }, 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 = { 109, 428 }, 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 = { 109, 431 }, 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 = { 109, 432 }, 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 = { 109, 434 }, 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 = { 109, 442 }, 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 = { 109, 443 }, 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 = { 109, 446 }, 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 = { 109, 448 }, 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 = { 109, 449 }, 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 = { 109, 451 }, 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 = { 109, 452 }, 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 = { 109, 435 }, 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 = { 109, 437 }, 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 = { 109, 436 }, 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 = { 109, 380 }, 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 = { 109, 232 }, 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 = { 109, 402 }, 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 = { 109, 284 }, 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 = { 109, 392 }, 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 = { 109, 273 }, 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 = { 109, 316 }, 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 = { 109, 239 }, 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 = { 109, 289 }, 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 = { 109, 330 }, 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 = { 109, 287 }, 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 = { 109, 267 }, 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 = { 109, 236 }, 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 = { 109, 338 }, 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 = { 109, 278 }, 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 = { 109, 278 }, 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 = { 109, 350 }, 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 = { 109, 261 }, 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 = { 109, 309 }, 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 = { 109, 337 }, 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 = { 109, 362 }, 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 = { 109, 372 }, 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 = { 109, 396 }, 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 = { 109, 386 }, 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 = { 109, 265 }, 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 = { 109, 291 }, 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 = { 109, 285 }, 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 = { 109, 257 }, 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 = { 109, 408 }, 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 = { 109, 306 }, 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 = { 109, 377 }, 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 = { 109, 292 }, 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 = { 109, 333 }, 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 = { 109, 378 }, 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 = { 109, 255 }, 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 = { 109, 234 }, 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 = { 109, 243 }, 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 = { 109, 376 }, 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 = { 109, 351 }, 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 = { 109, 280 }, 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 = { 109, 374 }, 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 = { 109, 286 }, 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 = { 109, 393 }, 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 = { 109, 327 }, 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 = { 109, 332 }, 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 = { 109, 279 }, 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 = { 109, 340 }, 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 = { 109, 254 }, 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 = { 109, 307 }, 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 = { 109, 302 }, 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 = { 109, 268 }, 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 = { 109, 323 }, 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 = { 109, 246 }, 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 = { 109, 409 }, 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 = { 109, 403 }, 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 = { 109, 303 }, 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 = { 109, 404 }, 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 = { 109, 334 }, 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 = { 109, 364 }, 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 = { 109, 241 }, 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 = { 109, 288 }, 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 = { 109, 312 }, 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 = { 109, 379 }, 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 = { 109, 258 }, 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 = { 109, 295 }, 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 = { 109, 283 }, 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 = { 109, 311 }, 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 = { 109, 310 }, 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 = { 109, 298 }, 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 = { 109, 296 }, 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 = { 109, 328 }, 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 = { 109, 253 }, 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 = { 109, 266 }, 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 = { 109, 348 }, 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 = { 109, 269 }, 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 = { 109, 322 }, 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 = { 109, 299 }, 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 = { 109, 256 }, 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 = { 109, 407 }, 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 = { 109, 406 }, 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 = { 109, 271 }, 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 = { 109, 294 }, 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 = { 109, 352 }, 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 = { 109, 301 }, 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 = { 109, 399 }, 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 = { 109, 293 }, 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 = { 109, 297 }, 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 = { 109, 335 }, 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 = { 109, 304 }, 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 = { 109, 354 }, 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 = { 109, 238 }, 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 = { 109, 343 }, 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 = { 109, 308 }, 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 = { 109, 400 }, 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 = { 109, 353 }, 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 = { 109, 394 }, level = 1, group = "HungryLoopSupportedByTransfusion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3740740992] = { "Socketed Gems are Supported by Level 3 Transfusion" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["SocketedGemLevelPer25PlayerLevelsUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems per 25 Player Levels", statOrder = { 168 }, 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 = { 836 }, 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 = { 1274 }, level = 1, group = "AddsPhysicalDamagePer3PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1454603936] = { "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels" }, } }, - ["AbyssJewelSocketImplicit"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__1"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__2"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__4"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__6_"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__8"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__9"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__11_"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__13"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__14"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 6 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__16"] = { affix = "", "Has 3 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 3 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__17"] = { affix = "", "Has 4 Abyssal Sockets", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 4 Abyssal Sockets" }, } }, - ["IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1"] = { affix = "", "2% increased Attack Critical Strike Chance per 200 Accuracy Rating", statOrder = { 4850 }, level = 65, group = "IncreasedCriticalStrikeChancePerAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2196695640] = { "2% increased Attack Critical Strike Chance per 200 Accuracy Rating" }, } }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 774 }, 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 = { 772 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, - ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 776 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [850729424] = { "Triggers Level 20 Lightning Aegis when Equipped" }, } }, - ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 773 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2602585351] = { "Triggers Level 20 Elemental Aegis when Equipped" }, } }, - ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 779 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1892084828] = { "Triggers Level 20 Physical Aegis when Equipped" }, } }, - ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 525 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 685, 685.1, 685.2, 685.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1757548756] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills" }, } }, - ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 686, 686.1, 686.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6070 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9426 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10424, 10424.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, - ["GainCriticalStrikeChanceOnManaSpentUnique__1"] = { affix = "", "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", statOrder = { 6748 }, level = 69, group = "GainCriticalStrikeChanceOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2864779809] = { "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana" }, } }, - ["GainHerEmbraceOnIgniteUnique__1"] = { affix = "", "Gain Her Embrace for 3 seconds when you Ignite an Enemy", statOrder = { 6771 }, level = 1, group = "GainHerEmbraceOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [608963131] = { "Gain Her Embrace for 3 seconds when you Ignite an Enemy" }, } }, - ["TakeDamagePerLevelWhileHerEmbraceUnique__1_"] = { affix = "", "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", statOrder = { 9604 }, level = 1, group = "TakeDamagePerLevelWhileHerEmbrace", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2442112158] = { "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level" }, } }, - ["GainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 50 Reserved Mana", statOrder = { 6703 }, level = 1, group = "GainArmourEqualToManaReserved", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2574337583] = { "1% increased Armour per 50 Reserved Mana" }, } }, - ["VaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6832 }, level = 1, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1032751668] = { "You have Vaal Pact if you've dealt a Critical Strike Recently" }, } }, - ["AdditionalArrowWhileAccuracyIs3000Uber1"] = { affix = "", "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000", statOrder = { 9515 }, level = 1, group = "AdditionalArrowWhileAccuracyIs3000", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3399621281] = { "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000" }, } }, - ["AccuracyRatingIsDoubledUber1"] = { affix = "", "50% more Global Accuracy Rating", statOrder = { 4519 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2161347476] = { "50% more Global Accuracy Rating" }, } }, - ["MeleePhysicalDamagePerStrengthWhileFortifiedUber1"] = { affix = "", "1% increased Melee Physical Damage per 10 Strength while Fortified", statOrder = { 9200 }, level = 1, group = "MeleePhysicalDamagePerStrengthWhileFortified", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [523320038] = { "1% increased Melee Physical Damage per 10 Strength while Fortified" }, } }, - ["IncreasedEvasionRatingWhileLeechingUber1"] = { affix = "", "20% increased Evasion while Leeching", statOrder = { 6502 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [3854334101] = { "20% increased Evasion while Leeching" }, } }, - ["IncreasedEvasionRatingIfHitEnemyRecentlyUber1"] = { affix = "", "20% increased Evasion if you have Hit an Enemy Recently", statOrder = { 6499 }, level = 1, group = "IncreasedEvasionRatingIfHitEnemyRecently", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1511114965] = { "20% increased Evasion if you have Hit an Enemy Recently" }, } }, - ["CriticalStrikeMultiplierIfHaventCritRecentlyUber1"] = { affix = "", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 5965 }, level = 1, group = "CriticalStrikeMultiplierIfHaventCritRecently", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUber1"] = { affix = "", "70% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3195 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2282705842] = { "70% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["AreaOfEffectWith500StrengthUber1"] = { affix = "", "30% increased Area of Effect if you have at least 500 Strength", statOrder = { 4745 }, level = 1, group = "AreaOfEffectWith500Strength", weightKey = { "mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1966978922] = { "30% increased Area of Effect if you have at least 500 Strength" }, } }, - ["HitsCantBeEvadedIfBlockedRecentlyUber1_"] = { affix = "", "Hits with this Weapon can't be Evaded if you have Blocked Recently", statOrder = { 7945 }, level = 1, group = "HitsCantBeEvadedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3124854176] = { "Hits with this Weapon can't be Evaded if you have Blocked Recently" }, } }, - ["AttackSpeedIfBlockedRecentlyUber1"] = { affix = "", "20% increased Attack Speed if you have Blocked Recently", statOrder = { 4901 }, level = 1, group = "AttackSpeedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [3203854378] = { "20% increased Attack Speed if you have Blocked Recently" }, } }, - ["AreaOfEffectWhileFortifiedUber1"] = { affix = "", "25% increased Area of Effect while Fortified", statOrder = { 4740 }, level = 1, group = "AreaOfEffectWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4281819294] = { "25% increased Area of Effect while Fortified" }, } }, - ["MeleeWeaponRangeWhileFortifiedUber1"] = { affix = "", "+0.2 metres to Melee Strike Range while Fortified", statOrder = { 9218 }, level = 1, group = "MeleeWeaponRangeWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [873142284] = { "+0.2 metres to Melee Strike Range while Fortified" }, } }, - ["StunDurationPerStrengthUber1"] = { affix = "", "2% increased Stun Duration per 15 Strength", statOrder = { 10261 }, level = 1, group = "StunDurationPerStrength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3524793843] = { "2% increased Stun Duration per 15 Strength" }, } }, - ["ReducedStunThresholdWith500StrengthUber1"] = { affix = "", "30% reduced Enemy Stun Threshold while you have at least 500 Strength", statOrder = { 10267 }, level = 1, group = "ReducedStunThresholdWith500Strength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1350423427] = { "30% reduced Enemy Stun Threshold while you have at least 500 Strength" }, } }, - ["AreaDamagePerStrengthUber1"] = { affix = "", "1% increased Area Damage per 12 Strength", statOrder = { 4724 }, level = 1, group = "AreaDamagePerStrength", weightKey = { "2h_mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [1457012825] = { "1% increased Area Damage per 12 Strength" }, } }, - ["IncreasedDamageAgainstTauntedEnemiesUber1"] = { affix = "", "50% increased Damage with Hits and Ailments against Taunted Enemies", statOrder = { 6077 }, level = 1, group = "IncreasedDamageAgainstTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [416495155] = { "50% increased Damage with Hits and Ailments against Taunted Enemies" }, } }, - ["BleedingDamagePerEnduranceChargeUber1"] = { affix = "", "5% increased Damage with Bleeding per Endurance Charge", statOrder = { 5106 }, level = 1, group = "BleedingDamagePerEnduranceCharge", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3553579843] = { "5% increased Damage with Bleeding per Endurance Charge" }, } }, - ["MovementSpeedWhileFortifiedUber1"] = { affix = "", "15% increased Movement Speed while Fortified", statOrder = { 3325 }, level = 1, group = "MovementSpeedWhileFortified", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [89156964] = { "15% increased Movement Speed while Fortified" }, } }, - ["MeleeWeaponRangeAtMaximumFrenzyChargesUber1_"] = { affix = "", "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges", statOrder = { 9217 }, level = 1, group = "MeleeWeaponRangeAtMaximumFrenzyCharges", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1915592358] = { "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges" }, } }, - ["BlindEnemiesWhenHitUber1__"] = { affix = "", "20% chance to Blind Enemies when they Hit you", statOrder = { 5225 }, level = 1, group = "BlindEnemiesWhenHit", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [26216403] = { "20% chance to Blind Enemies when they Hit you" }, } }, - ["PoisonDamageAgainstBleedingEnemiesUber1"] = { affix = "", "50% increased Damage with Poison inflicted on Bleeding Enemies", statOrder = { 9680 }, level = 1, group = "PoisonDamageAgainstBleedingEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [3443763859] = { "50% increased Damage with Poison inflicted on Bleeding Enemies" }, } }, - ["ChanceToBleedOnTauntedEnemiesUber1"] = { affix = "", "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies", statOrder = { 4919 }, level = 1, group = "ChanceToBleedOnTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [455461462] = { "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies" }, } }, - ["AreaOfEffectPerPowerChargeUber1"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["BleedDamageAgainstPoisonedEnemiesUber1"] = { affix = "", "50% increased Damage with Bleeding inflicted on Poisoned Enemies", statOrder = { 5110 }, level = 1, group = "BleedDamageAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2598533821] = { "50% increased Damage with Bleeding inflicted on Poisoned Enemies" }, } }, - ["GainEnduranceChargeOnStunChanceUber1"] = { affix = "", "25% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5692 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1582887649] = { "25% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["FortifyEffectWhileStationaryUber1"] = { affix = "", "+4 to maximum Fortification while stationary", statOrder = { 9123 }, level = 1, group = "FortifyEffectWhileStationary", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3476600731] = { "+4 to maximum Fortification while stationary" }, } }, - ["FortifyDurationPerStrengthUber1"] = { affix = "", "1% increased Fortification Duration per 10 Strength", statOrder = { 6666 }, level = 1, group = "FortifyDurationPerStrength", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3000615037] = { "1% increased Fortification Duration per 10 Strength" }, } }, - ["ReducedElementalDamageTakenPerEnduranceChargeUber1"] = { affix = "", "1% reduced Elemental Damage taken per Endurance Charge", statOrder = { 6324 }, level = 1, group = "ReducedElementalDamageTakenPerEnduranceCharge", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2615920043] = { "1% reduced Elemental Damage taken per Endurance Charge" }, } }, - ["AreaOfEffectIfBlockedRecentlyUber1"] = { affix = "", "20% increased Area of Effect if you have Blocked Recently", statOrder = { 4735 }, level = 1, group = "AreaOfEffectIfBlockedRecently", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1887270958] = { "20% increased Area of Effect if you have Blocked Recently" }, } }, - ["ElementalDamagePer12IntelligenceUber1"] = { affix = "", "1% increased Elemental Damage per 12 Intelligence", statOrder = { 6311 }, level = 1, group = "ElementalDamagePer12Intelligence", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3384209943] = { "1% increased Elemental Damage per 12 Intelligence" }, } }, - ["AdditionalBlockChanceIfCritRecentlyUber1__"] = { affix = "", "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently", statOrder = { 4546 }, level = 1, group = "AdditionalBlockChanceIfCritRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [892558095] = { "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" }, } }, - ["ElementalDamagePer12StrengthUber1"] = { affix = "", "1% increased Elemental Damage per 12 Strength", statOrder = { 6312 }, level = 1, group = "ElementalDamagePer12Strength", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3770261957] = { "1% increased Elemental Damage per 12 Strength" }, } }, - ["ElementalDamagePerPowerChargeUber1"] = { affix = "", "5% increased Elemental Damage per Power charge", statOrder = { 6313 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [1482070333] = { "5% increased Elemental Damage per Power charge" }, } }, - ["CullingStrikeIfCritRecentlyUber1"] = { affix = "", "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently", statOrder = { 7888 }, level = 1, group = "CullingStrikeIfCritRecently", weightKey = { "axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318464431] = { "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently" }, } }, - ["CritsHaveCullingStrikeUber1"] = { affix = "", "Critical Strikes with this Weapon have Culling Strike", statOrder = { 7887 }, level = 1, group = "CritsHaveCullingStrike", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [1240032295] = { "Critical Strikes with this Weapon have Culling Strike" }, } }, - ["GainEnduranceChargeOnLosingFortifyUber1"] = { affix = "", "Gain an Endurance Charge when you stop being Fortified", statOrder = { 6753 }, level = 1, group = "GainEnduranceChargeOnLosingFortify", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1533103082] = { "Gain an Endurance Charge when you stop being Fortified" }, } }, - ["LifeGainOnHitWhileLeechingUber1"] = { affix = "", "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching", statOrder = { 7990 }, level = 1, group = "LifeGainOnHitWhileLeeching", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [840182473] = { "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5412 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5407 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5420 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 6066 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, - ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "40% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1865 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "30% reduced Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__4"] = { affix = "", "(5-25)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(5-25)% increased Duration of Ailments on Enemies" }, } }, - ["FasterAilmentDamageUnique__1"] = { affix = "", "Damaging Ailments deal damage (5-25)% faster", statOrder = { 6132 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (5-25)% faster" }, } }, - ["SharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10811 }, level = 1, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [956038713] = { "Shared Suffering" }, } }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 820 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6637 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6688 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5847 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10551 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6175 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10365 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10365 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9757 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6468 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6348 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10178 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2076926581] = { "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5821 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10841 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10847 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10851 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10850 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, - ["ElementalDamageCanShockUnique__1__"] = { affix = "", "Your Elemental Damage can Shock", statOrder = { 2878 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "Your Elemental Damage can Shock" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them", statOrder = { 2467 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1217730254] = { "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them" }, } }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 794 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["DamagePerAbyssJewelTypeUnique__1_"] = { affix = "", "10% increased Damage for each type of Abyss Jewel affecting you", statOrder = { 4172 }, level = 1, group = "DamagePerAbyssJewelType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [154272030] = { "10% increased Damage for each type of Abyss Jewel affecting you" }, } }, - ["AdditionalPhysicalDamageReductionWhileMovingUnique__1"] = { affix = "", "5% additional Physical Damage Reduction while moving", statOrder = { 4589 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "5% additional Physical Damage Reduction while moving" }, } }, - ["ReducedElementalDamageTakenWhileStationaryUnique__1_"] = { affix = "", "5% reduced Elemental Damage taken while stationary", statOrder = { 6325 }, level = 1, group = "ReducedElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [983989924] = { "5% reduced Elemental Damage taken while stationary" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__1"] = { affix = "", "1% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9168 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "1% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__1_"] = { affix = "", "1% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9176 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "1% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9168 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "3% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9176 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "3% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["ElementalPenetrationPerAbyssalJewelUnique__1"] = { affix = "", "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you", statOrder = { 9594 }, level = 1, group = "ElementalPenetrationPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4250752669] = { "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerElderItemUnique__1"] = { affix = "", "+6 to Maximum Life per Elder Item Equipped", statOrder = { 4333 }, level = 1, group = "IncreasedLifePerElderItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3849523464] = { "+6 to Maximum Life per Elder Item Equipped" }, } }, - ["AilmentEffectPerElderItemUnique__1"] = { affix = "", "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped", statOrder = { 4337 }, level = 1, group = "AilmentEffectPerElderItem", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [4133552694] = { "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped" }, } }, - ["AilmentDamagePerElderItemUnique__1__"] = { affix = "", "15% increased Damage with Ailments per Elder Item Equipped", statOrder = { 4334 }, level = 1, group = "AilmentDamagePerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2418574586] = { "15% increased Damage with Ailments per Elder Item Equipped" }, } }, - ["AilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4335 }, level = 1, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2212731469] = { "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped" }, } }, - ["RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_"] = { affix = "", "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", statOrder = { 9910 }, level = 1, group = "RemoveAilmentOnFlaskUseIfAllItemsAreElder", weightKey = { }, weightVal = { }, modTags = { "flask", "ailment" }, tradeHashes = { [2917587077] = { "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items" }, } }, - ["StrengthDamageBonus3Per10Unique__1"] = { affix = "", "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength", statOrder = { 10255, 10255.1 }, level = 1, group = "StrengthDamageBonus3Per10", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1531241759] = { "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength" }, } }, - ["CannotBlockSpellsUnique__1"] = { affix = "", "Cannot Block Spell Damage", statOrder = { 5433 }, level = 1, group = "CannotBlockSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4076910393] = { "Cannot Block Spell Damage" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "+(80-100) to Evasion Rating and Energy Shield", statOrder = { 7936 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(80-100) to Evasion Rating and Energy Shield" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_"] = { affix = "", "+(120-150) to Evasion Rating and Energy Shield", statOrder = { 7936 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(120-150) to Evasion Rating and Energy Shield" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7866 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7939 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit", statOrder = { 7938 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7867 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7870 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7864 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, - ["ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1"] = { affix = "", "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", statOrder = { 8033 }, level = 1, group = "ArcaneSurgeOnHitWithSpellAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3153744598] = { "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" }, } }, - ["MinionAccuracyWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating", statOrder = { 8002 }, level = 1, group = "MinionAccuracyWithMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2388362438] = { "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating" }, } }, - ["MinionUnholyMightWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells", statOrder = { 8003, 8003.1 }, level = 1, group = "MinionUnholyMightWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "caster", "minion" }, tradeHashes = { [4122732904] = { "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells" }, } }, - ["AbyssJewelEffectUnique__1"] = { affix = "", "(50-100)% increased Effect of Socketed Abyss Jewels", statOrder = { 226 }, level = 1, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "(50-100)% increased Effect of Socketed Abyss Jewels" }, } }, - ["MovementVelocityWithMagicAbyssJewelUnique__1"] = { affix = "", "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel", statOrder = { 9441 }, level = 1, group = "MovementVelocityWithMagicAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874817029] = { "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel" }, } }, - ["ElementalAilmentDurationWithRareAbyssJewelUnique__1"] = { affix = "", "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", statOrder = { 6295 }, level = 1, group = "ElementalAilmentDurationWithRareAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [287112619] = { "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" }, } }, - ["ReservationEfficiencyWithUniqueAbyssJewelUnique__1"] = { affix = "", "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", statOrder = { 9919 }, level = 1, group = "ReservationEfficiencyWithUniqueAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2811179011] = { "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel" }, } }, - ["IncreasedArmourWhileStationaryUnique__1"] = { affix = "", "80% increased Armour while stationary", statOrder = { 4779 }, level = 1, group = "IncreasedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3184053924] = { "80% increased Armour while stationary" }, } }, - ["NumberOfProjectilesIfHitRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've been Hit Recently", statOrder = { 9523 }, level = 1, group = "NumberOfProjectilesIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [988207959] = { "Skills fire 2 additional Projectiles if you've been Hit Recently" }, } }, - ["GainIronReflexesWhileStationaryUnique__1"] = { affix = "", "Iron Reflexes while stationary", statOrder = { 10839 }, level = 1, group = "GainIronReflexesWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [187998220] = { "Iron Reflexes while stationary" }, } }, - ["PlayerFarShotUnique__2"] = { affix = "", "Far Shot", statOrder = { 10826 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["PlayerFarShotUnique__3"] = { affix = "", "Far Shot", statOrder = { 10826 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["KeystonePointBlankUnique__2"] = { affix = "", "Point Blank", statOrder = { 10800 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently", statOrder = { 9524 }, level = 1, group = "NumberOfProjectilesIfUsedAMovementSkillRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2809802678] = { "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently" }, } }, - ["EvasionRatingWhileMovingUnique__1"] = { affix = "", "80% increased Evasion Rating while moving", statOrder = { 6503 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "80% increased Evasion Rating while moving" }, } }, - ["AddedPhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies", statOrder = { 4882 }, level = 1, group = "AddedPhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2202639361] = { "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies" }, } }, - ["AddedFireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies", statOrder = { 4875 }, level = 1, group = "AddedFireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2453554491] = { "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies" }, } }, - ["GainAvatarOfFireEvery8SecondsUnique__1"] = { affix = "", "Every 8 seconds, gain Avatar of Fire for 4 seconds", statOrder = { 10837 }, level = 1, group = "GainAvatarOfFireEvery8Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3345955207] = { "Every 8 seconds, gain Avatar of Fire for 4 seconds" }, } }, - ["ChanceToBleedIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies", statOrder = { 4917 }, level = 1, group = "ChanceToBleedIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3148418088] = { "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies" }, } }, - ["IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1"] = { affix = "", "(160-200)% increased Critical Strike Chance while you have Avatar of Fire", statOrder = { 10845 }, level = 1, group = "IncreasedCriticalStrikeChanceWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2815652613] = { "(160-200)% increased Critical Strike Chance while you have Avatar of Fire" }, } }, - ["ArmourWithoutAvatarOfFireUnique__1"] = { affix = "", "+2000 Armour while you do not have Avatar of Fire", statOrder = { 10849 }, level = 1, group = "ArmourWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4078952782] = { "+2000 Armour while you do not have Avatar of Fire" }, } }, - ["ConvertPhysicalToFireWithAvatarOfFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire while you have Avatar of Fire", statOrder = { 10846 }, level = 1, group = "ConvertPhysicalToFireWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2052379536] = { "50% of Physical Damage Converted to Fire while you have Avatar of Fire" }, } }, - ["GainElementalOverloadEvery16SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Elemental Overload for 8 seconds", statOrder = { 10838 }, level = 1, group = "GainElementalOverloadEvery16Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [708913352] = { "Every 16 seconds you gain Elemental Overload for 8 seconds" }, } }, - ["GainResoluteTechniqueWithoutElementalOverloadUnique__1"] = { affix = "", "You have Resolute Technique while you do not have Elemental Overload", statOrder = { 10840 }, level = 1, group = "GainResoluteTechniqueWithoutElementalOverload", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2905429068] = { "You have Resolute Technique while you do not have Elemental Overload" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__1"] = { affix = "", "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain", statOrder = { 9738 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1924041432] = { "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__2"] = { affix = "", "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9737 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos2", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1698276268] = { "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4584 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(5-8)% additional Physical Damage Reduction while affected by Determination" }, } }, - ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5236 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3692646597] = { "+(5-8)% Chance to Block Attack Damage while affected by Determination" }, } }, - ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10484 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3207781478] = { "Unaffected by Vulnerability while affected by Determination" }, } }, - ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6541 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [68410701] = { "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination" }, } }, - ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination", statOrder = { 12 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2255585376] = { "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination" }, } }, - ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4770 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3742808908] = { "+(600-1000) to Armour while affected by Determination" }, } }, - ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5680 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(5-8)% chance to Evade Attack Hits while affected by Grace" }, } }, - ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10173 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4071658793] = { "+(12-15)% chance to Suppress Spell Damage while affected by Grace" }, } }, - ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10468 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2365917222] = { "Unaffected by Enfeeble while affected by Grace" }, } }, - ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9428 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3329402420] = { "(10-15)% increased Movement Speed while affected by Grace" }, } }, - ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5226 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2548097895] = { "(30-50)% chance to Blind Enemies which Hit you while affected by Grace" }, } }, - ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6464 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline" }, } }, - ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5657 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1313498929] = { "+(5-8)% Chance to Block Spell Damage while affected by Discipline" }, } }, - ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6434 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1016185292] = { "(30-40)% faster start of Energy Shield Recharge while affected by Discipline" }, } }, - ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6437 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3765507527] = { "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline" }, } }, - ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6457 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [80470845] = { "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline" }, } }, - ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9878 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1077131949] = { "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath" }, } }, - ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8188 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [2889601846] = { "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath" }, } }, - ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6442 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [121436064] = { "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath" }, } }, - ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9634 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2255914633] = { "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath" }, } }, - ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5050 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2106756686] = { "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7454 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [418293304] = { "(40-60)% increased Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5946 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3357049845] = { "(70-100)% increased Critical Strike Chance while affected by Wrath" }, } }, - ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9877 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3111519953] = { "Damage Penetrates (10-15)% Fire Resistance while affected by Anger" }, } }, - ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7373 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2312747856] = { "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger" }, } }, - ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9631 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4245204226] = { "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger" }, } }, - ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5049 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [3624529132] = { "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6573 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3337107517] = { "(40-60)% increased Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5973 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3627458291] = { "+(30-50)% to Critical Strike Multiplier while affected by Anger" }, } }, - ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9875 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1222888897] = { "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred" }, } }, - ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4557 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2753985507] = { "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred" }, } }, - ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9237 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2643562209] = { "Adds (58-70) to (88-104) Cold Damage while affected by Hatred" }, } }, - ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5048 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [664849247] = { "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred" }, } }, - ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5819 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1413864591] = { "(40-60)% increased Cold Damage while affected by Hatred" }, } }, - ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7366 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3656959867] = { "(0.8-1.2)% of Damage leeched as Life while affected by Vitality" }, } }, - ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7409 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3489570622] = { "Regenerate (100-140) Life per Second while affected by Vitality" }, } }, - ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7416 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1165583295] = { "Regenerate (1-1.5)% of Life per second while affected by Vitality" }, } }, - ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7399 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2690790844] = { "(10-15)% increased Life Recovery Rate while affected by Vitality" }, } }, - ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7360 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4259701244] = { "Gain (20-30) Life per Enemy Hit while affected by Vitality" }, } }, - ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6645 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [362838683] = { "(50-70)% increased Life Recovery from Flasks while affected by Vitality" }, } }, - ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10058 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2445618239] = { "-(10-5) to Total Mana Cost of Skills while affected by Clarity" }, } }, - ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10063 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1853636813] = { "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity" }, } }, - ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6093 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2383304564] = { "(6-10)% of Damage taken from Mana before Life while affected by Clarity" }, } }, - ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9845 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1699077932] = { "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity" }, } }, - ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9174 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2831391506] = { "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity" }, } }, - ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8197 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [556659145] = { "(10-15)% increased Mana Recovery Rate while affected by Clarity" }, } }, - ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6111 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [380220671] = { "(15-20)% of Damage taken while affected by Clarity Recouped as Mana" }, } }, - ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10174 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170859717] = { "+(5-8)% chance to Suppress Spell Damage while affected by Haste" }, } }, - ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6792 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424006185] = { "You gain Onslaught for 4 seconds on Kill while affected by Haste" }, } }, - ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6803 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1346311588] = { "You have Phasing while affected by Haste" }, } }, - ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10483 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2806391472] = { "Unaffected by Temporal Chains while affected by Haste" }, } }, - ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6155 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [207635700] = { "Debuffs on you expire (15-20)% faster while affected by Haste" }, } }, - ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9405 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3332055899] = { "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste" }, } }, - ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9659 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1798459983] = { "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7238 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [371612541] = { "Immune to Ignite while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10456 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3308185931] = { "Unaffected by Burning Ground while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10469 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1173690938] = { "Unaffected by Flammability while affected by Purity of Fire" }, } }, - ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire", statOrder = { 10 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [435235774] = { "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire" }, } }, - ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5806 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1723738042] = { "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9657 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1779027621] = { "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7235 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2720072724] = { "Immune to Freeze while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10461 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2647344903] = { "Unaffected by Chilled Ground while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10471 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4012281889] = { "Unaffected by Frostbite while affected by Purity of Ice" }, } }, - ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice", statOrder = { 7 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2480601356] = { "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice" }, } }, - ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6557 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9661 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [254131992] = { "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" }, } }, - ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7243 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [281949611] = { "Immune to Shock while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10481 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567659895] = { "Unaffected by Shocked Ground while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10462 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1567542124] = { "Unaffected by Conductivity while affected by Purity of Lightning" }, } }, - ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning", statOrder = { 11, 11.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3023818840] = { "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning" }, } }, - ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6555, 6555.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, } }, - ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9658 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1722775216] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9656 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1710207583] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9660 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [873224517] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10467 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3223142064] = { "Unaffected by Elemental Weakness while affected by Purity of Elements" }, } }, - ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements", statOrder = { 9, 9.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1574578643] = { "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements" }, } }, - ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5749 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1138813382] = { "+(30-50)% to Chaos Resistance while affected by Purity of Elements" }, } }, - ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4566 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3234824465] = { "+1% to all maximum Elemental Resistances while affected by Purity of Elements" }, } }, - ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5974 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1817023621] = { "+(20-30)% to Critical Strike Multiplier while affected by Precision" }, } }, - ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4867 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2048747572] = { "(40-60)% increased Attack Damage while affected by Precision" }, } }, - ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9834 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3772841281] = { "Gain a Flask Charge when you deal a Critical Strike while affected by Precision" }, } }, - ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4909 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3375743050] = { "(10-15)% increased Attack Speed while affected by Precision" }, } }, - ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5399 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1653848515] = { "Cannot be Blinded while affected by Precision" }, } }, - ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9710 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3371719014] = { "(8-12)% chance to deal Double Damage while using Pride" }, } }, - ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9712 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3772848194] = { "Your Hits Intimidate Enemies for 4 seconds while you are using Pride" }, } }, - ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9716 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [576528026] = { "(40-60)% increased Physical Damage while using Pride" }, } }, - ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9711 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4173751044] = { "25% chance to Impale Enemies on Hit with Attacks while using Pride" }, } }, - ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9718 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1011863394] = { "Impales you inflict last 2 additional Hits while using Pride" }, } }, - ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3574, 4662, 10667 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1585991257] = { "Always Scorch while affected by Anger" }, [2185337019] = { "Aura Skills other than Anger are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3574, 4710, 10668 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1808477254] = { "80% increased Effect of Arcane Surge on you while affected by Clarity" }, [2010835448] = { "Aura Skills other than Clarity are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3574, 9134, 10669 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [460973817] = { "Aura Skills other than Determination are Disabled" }, [2110586221] = { "+1 to Maximum Endurance Charges while affected by Determination" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3574, 9182, 10670 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2204523353] = { "Aura Skills other than Discipline are Disabled" }, [1465672972] = { "+1 to Maximum Power Charges while affected by Discipline" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3574, 9144, 10671 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1747401945] = { "Aura Skills other than Grace are Disabled" }, [3458080964] = { "+1 to Maximum Frenzy Charges while affected by Grace" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3574, 4528, 10672 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1960426186] = { "10% increased Action Speed while affected by Haste" }, [3067441492] = { "Aura Skills other than Haste are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3574, 4657, 10673 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [13285831] = { "Always inflict Brittle while affected by Hatred" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3348211884] = { "Aura Skills other than Hatred are Disabled" }, } }, - ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3574, 9517, 10674 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4102244881] = { "You can apply an additional Curse while affected by Malevolence" }, [3540033124] = { "Aura Skills other than Malevolence are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3574, 5920, 10675 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2800254163] = { "Aura Skills other than Precision are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2617837023] = { "25% more Critical Strike chance while affected by Precision" }, } }, - ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3572, 6519, 10676 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3970941380] = { "Aura Skills other than Pride are Disabled" }, [1961516633] = { "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, [1636209393] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3574, 4566, 10677 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2225434657] = { "Aura Skills other than Purity of Elements are Disabled" }, [3234824465] = { "+3% to all maximum Elemental Resistances while affected by Purity of Elements" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3574, 6557, 10679 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2517644375] = { "Aura Skills other than Purity of Ice are Disabled" }, } }, - ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3574, 6555, 6555.1, 10680 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2523986538] = { "Aura Skills other than Purity of Lightning are Disabled" }, } }, - ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3574, 5806, 10678 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3192291777] = { "Aura Skills other than Purity of Fire are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1723738042] = { "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3574, 9888, 10681 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [110034065] = { "Aura Skills other than Vitality are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1366273824] = { "Regenerate 15% Life over one second when hit while affected by Vitality" }, } }, - ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3574, 4661, 10682 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2499038519] = { "Always Sap while affected by Wrath" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3292388799] = { "Aura Skills other than Wrath are Disabled" }, } }, - ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3574, 10464, 10683 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3403419549] = { "Unaffected by Curses while affected by Zealotry" }, [374559518] = { "Aura Skills other than Zealotry are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6150 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 273 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 25 Elemental Penetration" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Elemental Penetration", statOrder = { 273 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 15 Elemental Penetration" }, } }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4388 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of Life when you lose a Spirit Charge", statOrder = { 4390 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of Life when you lose a Spirit Charge" }, } }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of Energy Shield when you lose a Spirit Charge", statOrder = { 4391 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of Energy Shield when you lose a Spirit Charge" }, } }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9623 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [4288824781] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, - ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 821 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1992516007] = { "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge" }, } }, - ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4387 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [328131617] = { "Gain a Spirit Charge every second" }, } }, - ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4389 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2663792764] = { "You lose all Spirit Charges when taking a Savage Hit" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4385 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4385 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10707 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 800 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3308936917] = { "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill" }, } }, - ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 801 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2603798371] = { "Trigger Level 20 Shade Form when Hit" }, } }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 9252 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5744 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6320 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9652 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "12 to 14 Added Cold Damage per Frenzy Charge" }, } }, - ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3377 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AttackDamageLeechPerFrenzyChargeUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life per Frenzy Charge", statOrder = { 7370 }, level = 1, group = "AttackDamageLeechPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3243062554] = { "0.5% of Attack Damage Leeched as Life per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 9249 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Strike Chance per Power Charge", statOrder = { 4554 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Strike Chance per Power Charge" }, } }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "+(6-10)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+(6-10)% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4593 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+2% Chance to Block Spell Damage per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4593 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+5% Chance to Block Spell Damage per Power Charge" }, } }, - ["DamageTakenPerEnduranceChargeWhenHitUnique__1_"] = { affix = "", "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently", statOrder = { 10705 }, level = 1, group = "DamageTakenPerEnduranceChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1920234902] = { "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently" }, } }, - ["DamageTakenPerFrenzyChargeMovingUnique__1"] = { affix = "", "200 Cold Damage taken per second per Frenzy Charge while moving", statOrder = { 10702 }, level = 1, group = "DamageTakenPerFrenzyChargeMoving", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1528823952] = { "200 Cold Damage taken per second per Frenzy Charge while moving" }, } }, - ["DamageTakenPerPowerChargeOnCritUnique__1"] = { affix = "", "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently", statOrder = { 10709, 10709.1 }, level = 1, group = "DamageTakenPerPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1964333391] = { "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently" }, } }, - ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 824 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3262369040] = { "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill" }, } }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4361, 6916 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, - ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", statOrder = { 4332 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item" }, } }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item", statOrder = { 4329 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item" }, } }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item", statOrder = { 4330 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item" }, } }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", statOrder = { 4331 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item" }, } }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of Life when you use a Mana Flask", statOrder = { 4348 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of Life when you use a Mana Flask" }, } }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4349 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Mana Recovery from Flasks is also Recovered as Life" }, } }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", statOrder = { 4351 }, level = 1, group = "SpellDamagePer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%" }, } }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4350 }, level = 1, group = "ManaCostPer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SiphoningChargeOnSkillUseUnique__1"] = { affix = "", "25% chance to gain a Siphoning Charge when you use a Skill", statOrder = { 4341 }, level = 1, group = "SiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2922737717] = { "25% chance to gain a Siphoning Charge when you use a Skill" }, } }, - ["MaximumSiphoningChargePerElderOrShaperItemUnique__1"] = { affix = "", "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped", statOrder = { 4340 }, level = 1, group = "MaximumSiphoningChargePerElderOrShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872128565] = { "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped" }, } }, - ["PhysicalDamageToAttacksPerSiphoningChargeUnique__1"] = { affix = "", "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge", statOrder = { 4342 }, level = 1, group = "PhysicalDamageToAttacksPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3368671817] = { "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge" }, } }, - ["LifeLeechPerSiphoningChargeUnique__1"] = { affix = "", "0.2% of Damage Leeched as Life per Siphoning Charge", statOrder = { 4345 }, level = 1, group = "LifeLeechPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1587137379] = { "0.2% of Damage Leeched as Life per Siphoning Charge" }, } }, - ["NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1"] = { affix = "", "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", statOrder = { 4343 }, level = 1, group = "NonChaosDamageAddedAsChaosPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3296019532] = { "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge" }, } }, - ["AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1"] = { affix = "", "1% additional Physical Damage Reduction from Hits per Siphoning Charge", statOrder = { 4344 }, level = 1, group = "AdditionalPhysicalDamageReductionPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3837366401] = { "1% additional Physical Damage Reduction from Hits per Siphoning Charge" }, } }, - ["DamageTakenPerSiphoningChargeOnSkillUseUnique__1"] = { affix = "", "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", statOrder = { 4346 }, level = 1, group = "DamageTakenPerSiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2440172920] = { "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 828 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, - ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 827 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, - ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 829 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2143990571] = { "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill" }, } }, - ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 682 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1904419785] = { "Grants Level 20 Petrification Statue Skill" }, } }, - ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 700 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 695 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 725 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 715 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [989878105] = { "Grants Level 20 Intimidating Cry Skill" }, } }, - ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 702 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1598 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7410 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6303 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5670 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8909 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9802 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, - ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4380 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [637690626] = { "Gain a Frenzy Charge on every 50th Rampage Kill" }, } }, - ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4379 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4119032338] = { "2% increased Area of Effect per 25 Rampage Kills" }, } }, - ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2483 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, - ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 462 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, - ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 460 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 16 Cluster Trap" }, } }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 9238 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 9250 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, - ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4938 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, - ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4794 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, - ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4793 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7412 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8211 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, - ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4937 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, - ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 802 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, - ["CatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 817 }, level = 1, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3892608176] = { "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth" }, } }, - ["MaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4354 }, level = 81, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894704558] = { "+5 to Maximum number of Crab Barriers" }, } }, - ["AdditionalBlockChance5CrabBarriersUnique__1"] = { affix = "", "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers", statOrder = { 4357 }, level = 1, group = "AdditionalBlockChance5CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1354504703] = { "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers" }, } }, - ["AdditionalBlockChance10CrabBarriersUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers", statOrder = { 4358 }, level = 1, group = "AdditionalBlockChance10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [653107703] = { "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers" }, } }, - ["CrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4356 }, level = 1, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [455217103] = { "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit" }, } }, - ["DamagePerCrabBarrierUnique__1"] = { affix = "", "3% increased Damage per Crab Barrier", statOrder = { 4355 }, level = 1, group = "DamagePerCrabBarrier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019038967] = { "3% increased Damage per Crab Barrier" }, } }, - ["ChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4359, 4359.1 }, level = 1, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1829869055] = { "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers" }, } }, - ["CannotBeStunned10CrabBarriersUnique__1"] = { affix = "", "Cannot be Stunned if you have at least 10 Crab Barriers", statOrder = { 4352 }, level = 1, group = "CannotBeStunned10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [877233648] = { "Cannot be Stunned if you have at least 10 Crab Barriers" }, } }, - ["CannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4353 }, level = 1, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [241251790] = { "Cannot lose Crab Barriers if you have lost Crab Barriers Recently" }, } }, - ["GainPhasingWhileCatsStealthUnique__1"] = { affix = "", "You have Phasing while you have Cat's Stealth", statOrder = { 6804 }, level = 1, group = "GainPhasingWhileCatsStealth", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1834455446] = { "You have Phasing while you have Cat's Stealth" }, } }, - ["GainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6796 }, level = 1, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4274075490] = { "You have Onslaught while you have Cat's Agility" }, } }, - ["CatsStealthDurationUnique__1_"] = { affix = "", "+2 seconds to Cat's Stealth Duration", statOrder = { 5482 }, level = 1, group = "CatsStealthDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [387596329] = { "+2 seconds to Cat's Stealth Duration" }, } }, - ["CatsAgilityDurationUnique__1"] = { affix = "", "+2 seconds to Cat's Agility Duration", statOrder = { 4795 }, level = 1, group = "CatsAgilityDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686519528] = { "+2 seconds to Cat's Agility Duration" }, } }, - ["CatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5481 }, level = 1, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3850409117] = { "Aspect of the Cat has no Reservation" }, } }, - ["GainMaxFrenzyAndPowerOnCatsStealthUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", statOrder = { 6777 }, level = 1, group = "GainMaxFrenzyAndPowerOnCatsStealth", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [2446580062] = { "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth" }, } }, - ["GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", statOrder = { 6776 }, level = 1, group = "GainMaxFrenzyAndEnduranceOnCatsAgility", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [523966073] = { "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility" }, } }, - ["AttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4915 }, level = 1, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2059771038] = { "Attacks always inflict Bleeding while you have Cat's Stealth" }, } }, - ["GainCrimsonDanceWithCatsStealthUnique__1"] = { affix = "", "You have Crimson Dance while you have Cat's Stealth", statOrder = { 10832 }, level = 1, group = "GainCrimsonDanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3492797685] = { "You have Crimson Dance while you have Cat's Stealth" }, } }, - ["MovementSpeedWithCatsStealthUnique__1"] = { affix = "", "20% increased Movement Speed while you have Cat's Stealth", statOrder = { 9436 }, level = 1, group = "MovementSpeedWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [673704994] = { "20% increased Movement Speed while you have Cat's Stealth" }, } }, - ["AdditionalCriticalStrikeChanceWithCatAspectUnique__1"] = { affix = "", "+1% to Critical Strike Chance while affected by Aspect of the Cat", statOrder = { 4365 }, level = 1, group = "AdditionalCriticalStrikeChanceWithCatAspect", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3992636701] = { "+1% to Critical Strike Chance while affected by Aspect of the Cat" }, } }, - ["CritsBlindChanceWithCatsStealthUnique__1"] = { affix = "", "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth", statOrder = { 4366 }, level = 1, group = "CritsBlindChanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [843854434] = { "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth" }, } }, - ["DamageAgainstBlindedEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 7154 }, level = 1, group = "DamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3565956680] = { "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["ChanceToAvoidBleedingUnique__1"] = { affix = "", "(40-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(40-50)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingUnique__2_"] = { affix = "", "100% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "100% chance to Avoid Bleeding" }, } }, - ["DamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 7153 }, level = 1, group = "DamageAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1790172543] = { "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["AccuracyAgainstBleedingEnemiesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "AccuracyAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(400-500) to Accuracy Rating" }, } }, - ["CommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 791 }, level = 1, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3251948367] = { "Trigger Commandment of Inferno on Critical Strike" }, } }, - ["MaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are (76-78)%", statOrder = { 9561 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (76-78)%" }, } }, - ["MaximumResistancesOverrideUnique__2"] = { affix = "", "Your Maximum Resistances are (70-72)%", statOrder = { 9561 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (70-72)%" }, } }, - ["BurningDamagePerEnemyShockedRecentlyUnique__1_"] = { affix = "", "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", statOrder = { 5387 }, level = 1, group = "BurningDamagePerEnemyShockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3285748758] = { "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" }, } }, - ["AddedLightningDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies", statOrder = { 6890 }, level = 1, group = "AddedLightningDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2870108850] = { "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies" }, } }, - ["LightningDamageCanIgniteUnique__1"] = { affix = "", "Your Lightning Damage can Ignite", statOrder = { 7448 }, level = 100, group = "LightningDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Your Lightning Damage can Ignite" }, } }, - ["ProjectileAttackDamageAt200DexterityUnique__1"] = { affix = "", "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity", statOrder = { 4368 }, level = 60, group = "ProjectileAttackDamageAt200Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1822142649] = { "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity" }, } }, - ["CriticalStrikeChanceAt200IntelligenceUnique__1"] = { affix = "", "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence", statOrder = { 4369 }, level = 60, group = "CriticalStrikeChanceAt200Intelligence", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [578121324] = { "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence" }, } }, - ["AddedFireDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved", statOrder = { 9256 }, level = 1, group = "AddedFireDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [833719670] = { "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved" }, } }, - ["AddedColdDamageWhileNoLifeReservedUnique__1__"] = { affix = "", "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved", statOrder = { 9255 }, level = 1, group = "AddedColdDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [897996059] = { "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved" }, } }, - ["AddedLightningDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved", statOrder = { 9257 }, level = 1, group = "AddedLightningDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [985999215] = { "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved" }, } }, - ["OnslaughtOnLowLifeUnique__1"] = { affix = "", "You have Onslaught while on Low Life", statOrder = { 6795 }, 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 = { 7172 }, 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 = { 10831 }, 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 = { 798 }, 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 = { 799 }, level = 1, group = "AnimateGuardianWeaponOnAnimatedWeaponKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [919960234] = { "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy" }, [1361762803] = { "" }, } }, - ["CannnotHaveNonAnimatedMinionsUnique__1"] = { affix = "", "You cannot have Non-Animated, Non-Manifested Minions", statOrder = { 10656 }, 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 = { 4694 }, 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 = { 4697, 4697.1 }, level = 1, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [91242932] = { "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets" }, } }, - ["IncreasedAnimatedMinionSplashDamageUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage", statOrder = { 6911 }, level = 1, group = "IncreasedAnimatedMinionSplashDamage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [478698670] = { "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage" }, } }, - ["FireDamageToAttacksPerStrengthUnique__1"] = { affix = "", "Adds 1 to 2 Fire Damage to Attacks per 10 Strength", statOrder = { 9243 }, level = 1, group = "FireDamageToAttacksPerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 1 to 2 Fire Damage to Attacks per 10 Strength" }, } }, - ["ColdDamageToAttacksPerDexterityUnique__1"] = { affix = "", "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9235 }, level = 1, group = "ColdDamageToAttacksPerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity" }, } }, - ["LightningDamageToAttacksPerIntelligenceUnique__1"] = { affix = "", "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9248 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence" }, } }, - ["AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4902 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, - ["CastSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5473 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, - ["EffectOfChillIsReversedUnique__1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5773 }, level = 30, group = "EffectOfChillIsReversed", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__1_"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 549 }, level = 57, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 549 }, level = 1, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["CountAsLowLifeWhenNotOnFullLifeUnique__1"] = { affix = "", "You count as on Low Life while not on Full Life", statOrder = { 10660 }, level = 75, group = "CountAsLowLifeWhenNotOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2475362240] = { "You count as on Low Life while not on Full Life" }, } }, - ["IncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4796 }, level = 1, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1509532587] = { "Aspect of the Spider can inflict Spider's Web on Enemies an additional time" }, } }, - ["AspectOfSpiderDurationUnique__1"] = { affix = "", "(40-50)% increased Aspect of the Spider Debuff Duration", statOrder = { 10200 }, level = 1, group = "AspectOfSpiderDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332854027] = { "(40-50)% increased Aspect of the Spider Debuff Duration" }, } }, - ["ESOnHitWebbedEnemiesUnique__1"] = { affix = "", "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web", statOrder = { 6438 }, level = 1, group = "ESOnHitWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [549215295] = { "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web" }, } }, - ["AspectOfSpiderWebIntervalUnique__1"] = { affix = "", "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead", statOrder = { 10203 }, level = 1, group = "AspectOfSpiderWebInterval", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3832130495] = { "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead" }, } }, - ["PowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5701 }, level = 1, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [273206351] = { "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web" }, } }, - ["PoisonChancePerPowerChargeUnique__1"] = { affix = "", "(6-10)% chance to Poison per Power Charge", statOrder = { 5723 }, level = 1, group = "PoisonChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2992087211] = { "(6-10)% chance to Poison per Power Charge" }, } }, - ["PoisonDamagePerPowerChargeUnique__1"] = { affix = "", "(15-20)% increased Damage with Poison per Power Charge", statOrder = { 9679 }, level = 1, group = "PoisonDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [4230767876] = { "(15-20)% increased Damage with Poison per Power Charge" }, } }, - ["ChaosDamagePerWebOnEnemyUnique__1"] = { affix = "", "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy", statOrder = { 9230 }, level = 1, group = "ChaosDamagePerWebOnEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [982177653] = { "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy" }, } }, - ["DamageAgainstEnemiesWith3WebsUnique__1_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", statOrder = { 7158 }, level = 1, group = "DamageAgainstEnemiesWith3Webs", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [103928310] = { "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs" }, } }, - ["AreaOfEffectAspectOfSpiderUnique__1"] = { affix = "", "(50-70)% increased Aspect of the Spider Area of Effect", statOrder = { 10202 }, level = 1, group = "AreaOfEffectAspectOfSpider", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686780108] = { "(50-70)% increased Aspect of the Spider Area of Effect" }, } }, - ["DamageDealtByWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs deal 10% reduced Damage", statOrder = { 6046 }, level = 1, group = "DamageDealtByWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3231424461] = { "Enemies affected by your Spider's Webs deal 10% reduced Damage" }, } }, - ["ResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 9922 }, level = 1, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [785655723] = { "Enemies affected by your Spider's Webs have -10% to All Resistances" }, } }, - ["NoArmourOrEnergyShieldUnique__1_"] = { affix = "", "You have no Armour or Maximum Energy Shield", statOrder = { 10662 }, level = 1, group = "NoArmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3591359751] = { "You have no Armour or Maximum Energy Shield" }, } }, - ["PoachersMarkCurseOnHitHexproofUnique__1"] = { affix = "", "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 765 }, level = 61, group = "PoachersMarkCurseOnHitHexproof", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [364728407] = { "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CullingStrikePoachersMarkUnique__1"] = { affix = "", "Culling Strike against Enemies Cursed with Poacher's Mark", statOrder = { 5993 }, level = 1, group = "CullingStrikePoachersMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2114080270] = { "Culling Strike against Enemies Cursed with Poacher's Mark" }, } }, - ["DamageOnMovementSkillUnique__1"] = { affix = "", "Take (100-200) Physical Damage when you use a Movement Skill", statOrder = { 9975 }, level = 1, group = "DamageOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2590715472] = { "Take (100-200) Physical Damage when you use a Movement Skill" }, } }, - ["RagingSpiritDamageUnique__1_"] = { affix = "", "Summoned Raging Spirits deal (175-250)% increased Damage", statOrder = { 3656 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (175-250)% increased Damage" }, } }, - ["RagingSpiritDamageUnique__2"] = { affix = "", "Summoned Raging Spirits deal (25-40)% increased Damage", statOrder = { 3656 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (25-40)% increased Damage" }, } }, - ["RagingSpiritAlwaysIgniteUnique__1"] = { affix = "", "Summoned Raging Spirits' Hits always Ignite", statOrder = { 9800 }, level = 1, group = "RagingSpiritAlwaysIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3954637034] = { "Summoned Raging Spirits' Hits always Ignite" }, } }, - ["ReducedRagingSpiritsAllowedUnique__1"] = { affix = "", "75% reduced Maximum number of Summoned Raging Spirits", statOrder = { 9605 }, level = 1, group = "ReducedRagingSpiritsAllowed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1186934478] = { "75% reduced Maximum number of Summoned Raging Spirits" }, } }, - ["BlindingAuraSkillUnique__1"] = { affix = "", "Triggers Level 20 Blinding Aura when Equipped", statOrder = { 683 }, level = 79, group = "BlindingAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [125312907] = { "Triggers Level 20 Blinding Aura when Equipped" }, } }, - ["AddedFireDamageAgainstBlindedEnemiesUnique__1_"] = { affix = "", "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies", statOrder = { 9244 }, level = 1, group = "AddedFireDamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3977907993] = { "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies" }, } }, - ["LightRadiusAppliesToAccuracyUnique__1_"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["FirePenetrationAgainstBlindedEnemiesUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance against Blinded Enemies", statOrder = { 9876 }, level = 1, group = "FirePenetrationAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1748657990] = { "Damage Penetrates 10% Fire Resistance against Blinded Enemies" }, } }, - ["HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1"] = { affix = "", "Your Hits can't be Evaded by Blinded Enemies", statOrder = { 7164 }, level = 72, group = "HitsCannotBeEvadedAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [90597215] = { "Your Hits can't be Evaded by Blinded Enemies" }, } }, - ["ChillEffectUnique__1"] = { affix = "", "(15-20)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(15-20)% increased Effect of Cold Ailments" }, } }, - ["OnHitWhileCursedTriggeredCurseNovaUnique__1"] = { affix = "", "Trigger Level 20 Elemental Warding on Melee Hit while Cursed", statOrder = { 812 }, level = 77, group = "OnHitWhileCursedTriggeredCurseNova", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [810166817] = { "Trigger Level 20 Elemental Warding on Melee Hit while Cursed" }, } }, - ["ChanceToBePoisonedUnique__1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3375 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, - ["PoisonExpiresSlowerUnique__1"] = { affix = "", "Poisons on you expire 50% slower", statOrder = { 9691 }, level = 1, group = "PoisonExpiresSlower", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2443132097] = { "Poisons on you expire 50% slower" }, } }, - ["MaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4569 }, level = 1, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [1030987123] = { "+3% to all maximum Resistances while Poisoned" }, } }, - ["EnergyShieldRegenPerPoisonUnique__1"] = { affix = "", "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second", statOrder = { 6462 }, level = 1, group = "EnergyShieldRegenPerPoison", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [948687156] = { "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second" }, } }, - ["BleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2455 }, level = 1, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1623397857] = { "You take Chaos Damage instead of Physical Damage from Bleeding" }, } }, - ["MaximumLifePercentPerCorruptedItemUnique__1_"] = { affix = "", "6% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "6% increased Maximum Life for each Corrupted Item Equipped" }, } }, - ["MaximumEnergyShieldPercentPerCorruptedItemUnique__1_"] = { affix = "", "8% increased Maximum Energy Shield for each Corrupted Item Equipped", statOrder = { 3103 }, level = 1, group = "MaximumEnergyShieldPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3916980068] = { "8% increased Maximum Energy Shield for each Corrupted Item Equipped" }, } }, - ["AllResistancesPerCorruptedItemUnique__1"] = { affix = "", "-(6-4)% to all Resistances for each Corrupted Item Equipped", statOrder = { 3108 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "-(6-4)% to all Resistances for each Corrupted Item Equipped" }, } }, - ["UniqueSelfCurseVulnerabilityLevel10"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3127 }, level = 28, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["UniqueSelfCurseVulnerabilityLevel20"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3127 }, level = 66, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", statOrder = { 3122 }, level = 1, group = "EnemiesExtraDamageRollsWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2758554648] = { "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability" }, } }, - ["CountAsLowLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Low Life while you are Cursed with Vulnerability", statOrder = { 3125 }, level = 1, group = "CountAsLowLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2304300603] = { "You count as on Low Life while you are Cursed with Vulnerability" }, } }, - ["TrapAreaOfEffectUnique__1"] = { affix = "", "Skills used by Traps have (10-20)% increased Area of Effect", statOrder = { 3484 }, level = 1, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (10-20)% increased Area of Effect" }, } }, - ["CastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4599 }, level = 1, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3520223758] = { "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed" }, } }, - ["RandomChargeOnTrapTriggerUnique__1"] = { affix = "", "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy", statOrder = { 9603, 9603.1 }, level = 1, group = "RandomChargeOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [710805027] = { "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy" }, } }, - ["TrapSkillsHaveBloodMagicUnique__1"] = { affix = "", "Skills which throw Traps Cost Life instead of Mana", statOrder = { 10842 }, level = 1, group = "TrapSkillsHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2420786978] = { "Skills which throw Traps Cost Life instead of Mana" }, } }, - ["CannotGainEnergyShieldUnique__1"] = { affix = "", "Cannot gain Energy Shield", statOrder = { 3123 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [206243615] = { "Cannot gain Energy Shield" }, } }, - ["LifeRegenerationWith500EnergyShieldUnique__1"] = { affix = "", "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield", statOrder = { 4376 }, level = 1, group = "LifeRegenerationWith500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1103902353] = { "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4377 }, level = 1, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1704843611] = { "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1500EnergyShieldUnique__1"] = { affix = "", "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield", statOrder = { 4378 }, level = 1, group = "LifeRegenerationWith1500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3227159962] = { "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield" }, } }, - ["IncreasedLifePerIntelligenceUnique__1"] = { affix = "", "+1 to Maximum Life per 2 Intelligence", statOrder = { 2028 }, level = 1, group = "IncreasedLifePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4284915962] = { "+1 to Maximum Life per 2 Intelligence" }, } }, - ["NoMaximumLifePerStrengthUnique__1"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2023 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumLifePerStrengthUnique__2"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2023 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumManaPerIntelligenceUnique__1"] = { affix = "", "Intelligence provides no inherent bonus to Maximum Mana", statOrder = { 2024 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2546599258] = { "Intelligence provides no inherent bonus to Maximum Mana" }, } }, - ["LifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 1% of Life per second per 500 Maximum Energy Shield", statOrder = { 7423 }, level = 1, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1960833438] = { "Regenerate 1% of Life per second per 500 Maximum Energy Shield" }, } }, - ["SkeletonsTakeFireDamagrPerSecondUnique__1"] = { affix = "", "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 10311 }, level = 1, group = "SkeletonsTakeFireDamagrPerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2912438397] = { "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["SkeletonsCoverEnemiesInAshUnique__1"] = { affix = "", "Summoned Skeletons Cover Enemies in Ash on Hit", statOrder = { 10310 }, level = 1, group = "SkeletonsCoverEnemiesInAsh", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3074608753] = { "Summoned Skeletons Cover Enemies in Ash on Hit" }, } }, - ["SkeletonsHaveAvatarOfFireUnique__1_"] = { affix = "", "Summoned Skeletons have Avatar of Fire", statOrder = { 10829 }, level = 1, group = "SkeletonsHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1958210928] = { "Summoned Skeletons have Avatar of Fire" }, } }, - ["AreaOfEffectPerEnemyKilledRecentlyUnique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 50%", statOrder = { 4739 }, level = 1, group = "AreaOfEffectPerEnemyKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4070157876] = { "1% increased Area of Effect per Enemy killed recently, up to 50%" }, } }, - ["ZealotsOathIfHaventBeenHitRecentlyUnique__1"] = { affix = "", "You have Zealot's Oath if you haven't been hit recently", statOrder = { 10843 }, level = 1, group = "ZealotsOathIfHaventBeenHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2391255504] = { "You have Zealot's Oath if you haven't been hit recently" }, } }, - ["LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1"] = { affix = "", "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently", statOrder = { 7361 }, level = 1, group = "LifeGainOnHitIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3285021988] = { "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently" }, } }, - ["MovementVelocityIfVaalSkillUsedRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you have used a Vaal Skill Recently", statOrder = { 9421 }, level = 40, group = "MovementVelocityIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1285172810] = { "10% increased Movement Speed if you have used a Vaal Skill Recently" }, } }, - ["GainPowerChargeOnUsingVaalSkillUnique__1"] = { affix = "", "Gain a Power Charge when you use a Vaal Skill", statOrder = { 6814 }, level = 1, group = "GainPowerChargeOnUsingVaalSkill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2383388829] = { "Gain a Power Charge when you use a Vaal Skill" }, } }, - ["ChaosDamageCanIgniteChillAndShockUnique__1"] = { affix = "", "Chaos Damage can Ignite, Chill and Shock", statOrder = { 2892 }, level = 1, group = "ChaosDamageCanIgniteChillAndShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3470457445] = { "Chaos Damage can Ignite, Chill and Shock" }, } }, - ["GainSoulEaterOnVaalSkillUseUnique__1"] = { affix = "", "Gain Soul Eater for 20 seconds when you use a Vaal Skill", statOrder = { 6827 }, level = 88, group = "GainSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [161058250] = { "Gain Soul Eater for 20 seconds when you use a Vaal Skill" }, } }, - ["DamageConversionToRandomElementUnique__1"] = { affix = "", "75% of Physical Damage converted to a random Element", statOrder = { 1966 }, level = 1, group = "DamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1776612984] = { "75% of Physical Damage converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__1"] = { affix = "", "50% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4370 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "50% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__2_"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4370 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementImplicitE1"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4370 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalAlwaysInflictElementalAilmentsUnique__1"] = { affix = "", "Hits with this Weapon always Ignite, Freeze, and Shock", statOrder = { 4372 }, level = 1, group = "LocalAlwaysInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [2451774989] = { "Hits with this Weapon always Ignite, Freeze, and Shock" }, } }, - ["LocalElementalDamageAgainstIgnitedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies", statOrder = { 4373 }, level = 1, group = "LocalElementalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3095345438] = { "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies" }, } }, - ["LocalElementalDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies", statOrder = { 4374 }, level = 1, group = "LocalElementalDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [196313911] = { "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies" }, } }, - ["LocalElementalDamageAgainstShockedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies", statOrder = { 4375 }, level = 1, group = "LocalElementalDamageAgainstShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1470894892] = { "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies" }, } }, - ["OnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6794 }, level = 1, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1959256242] = { "You have Onslaught while not on Low Mana" }, } }, - ["LoseManaPerSecondUnique__1"] = { affix = "", "Lose (30-40) Mana per Second", statOrder = { 8176 }, level = 1, group = "LoseManaPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2589042711] = { "Lose (30-40) Mana per Second" }, } }, - ["LoseManaPercentPerSecondUnique__1"] = { affix = "", "Lose 7% of Mana per Second", statOrder = { 8177 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 7% of Mana per Second" }, } }, - ["DodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6484 }, 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 = { 645 }, level = 1, group = "DisplayHasAdditionalMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2489070122] = { "Has an additional Implicit Mod" }, } }, - ["TriggerSummonPhantasmOnCorpseConsumeUnique__1"] = { affix = "", "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse", statOrder = { 823 }, 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 = { 5475 }, 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 = { 10640 }, level = 1, group = "LifeRegenerationIfCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4089969970] = { "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, - ["CannotHaveNonGolemMinionsUnique__1_"] = { affix = "", "You cannot have non-Golem Minions", statOrder = { 3696 }, level = 1, group = "CannotHaveNonGolemMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1826605755] = { "You cannot have non-Golem Minions" }, } }, - ["UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse"] = { affix = "", "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown", statOrder = { 161 }, level = 1, group = "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1112135314] = { "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown" }, } }, - ["UniqueCurseWithSocketedCurseOnHit_"] = { affix = "", "Curse Enemies with Socketed Hex Curse Gem on Hit", statOrder = { 7894 }, level = 30, group = "UniqueCurseWithSocketedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1352418057] = { "Curse Enemies with Socketed Hex Curse Gem on Hit" }, } }, - ["LessGolemDamageUnique__1"] = { affix = "", "Golems Deal (25-35)% less Damage", statOrder = { 3705 }, level = 1, group = "LessGolemDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2861397339] = { "Golems Deal (25-35)% less Damage" }, } }, - ["LessGolemLifeUnique__1"] = { affix = "", "Golems have (25-35)% less Life", statOrder = { 4099 }, level = 1, group = "LessGolemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3730242558] = { "Golems have (25-35)% less Life" }, } }, - ["GolemSizeUnique__1"] = { affix = "", "25% reduced Golem Size", statOrder = { 3697 }, level = 1, group = "GolemSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2576412389] = { "25% reduced Golem Size" }, } }, - ["GolemMovementSpeedUnique__1"] = { affix = "", "Golems have (80-100)% increased Movement Speed", statOrder = { 6904 }, level = 1, group = "GolemMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [186383409] = { "Golems have (80-100)% increased Movement Speed" }, } }, - ["SacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9955 }, 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 = { 4580 }, 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 = { 5003 }, 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 = { 7960 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, [3802517517] = { "" }, } }, - ["AllocatedNonNotablesGrantNothingUnique__1_"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7958 }, 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 = { 7908 }, 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 = { 9522 }, level = 1, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [5955083] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence" }, } }, - ["PlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9521 }, level = 1, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1917661185] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity" }, } }, - ["BlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1157 }, level = 1, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1061631617] = { "+1% Chance to Block Attack Damage per 50 Strength" }, } }, - ["ExtraRollsSpellBlockUnique__1"] = { affix = "", "Chance to Block Spell Damage is Unlucky", statOrder = { 1164 }, level = 1, group = "ExtraRollsSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3551025193] = { "Chance to Block Spell Damage is Unlucky" }, } }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 2130 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, - ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 2132 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, - ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 2147 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, - ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, - ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9424 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, - ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9427 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Frenzy Charge", statOrder = { 2633 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Power Charge", statOrder = { 7426 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of Life per second per Power Charge" }, } }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, - ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 9241 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, - ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(6-8) to (12-13) Added Cold Damage per Frenzy Charge" }, } }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 9246 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, - ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4541 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, - ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4542 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, - ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4543 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 10169 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [161741084] = { "+1% chance to Suppress Spell Damage per Endurance Charge" }, } }, - ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2551 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+1% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 10172 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1309947938] = { "+1% chance to Suppress Spell Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 6565 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1109745356] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 5812 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [3916799917] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge", statOrder = { 7450 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [3115319277] = { "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9654 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, - ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1561 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6448 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, - ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 4244 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2713233613] = { "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, } }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6778 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6780, 6780.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6751 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, - ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, - ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Strike" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4822 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, - ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 2055 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "10% increased Accuracy Rating per Frenzy Charge" }, } }, - ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4823 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Strike Chance per Endurance Charge", statOrder = { 5939 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Strike Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Strike Chance per Frenzy Charge", statOrder = { 5940 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Strike Chance per Frenzy Charge" }, } }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5744 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9646 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9648 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, - ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7302 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6790 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6732 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, - ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 4056 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3780437763] = { "You cannot be Stunned while at maximum Endurance Charges" }, } }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges", statOrder = { 6756 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9518 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusVaalPactEnduranceCharges"] = { affix = "", "You have Vaal Pact while at maximum Endurance Charges", statOrder = { 10835 }, level = 1, group = "VaalPactMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1314418188] = { "You have Vaal Pact while at maximum Endurance Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10833 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10834 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, - ["GlobalEnergyShieldPercentUnique__1"] = { affix = "", "(15-20)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["GlobalEvasionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingAndArmourPercentUnique__1_"] = { affix = "", "(30-60)% increased Evasion Rating and Armour", statOrder = { 1548 }, level = 1, group = "GlobalEvasionAndArmourPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3366029652] = { "(30-60)% increased Evasion Rating and Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1546 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "(20-30)% increased Armour", statOrder = { 1546 }, 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 = { 3409 }, 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 = { 3407 }, 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 = { 3405 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [992435560] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, [1553352778] = { "" }, } }, - ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3406 }, 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 = { 3004 }, 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 = { 3011 }, level = 1, group = "AuraAddedFireDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1666896662] = { "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket" }, } }, - ["AuraAddedColdDamagePerGreenSocketUnique__1"] = { affix = "", "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket", statOrder = { 3012 }, level = 1, group = "AuraAddedColdDamagePerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2665149933] = { "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket" }, } }, - ["AuraAddedLightningDamagePerBlueSocketUnique__1"] = { affix = "", "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket", statOrder = { 3013 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket" }, } }, - ["AuraAddedChaosDamagePerWhiteSocketUnique__1"] = { affix = "", "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket", statOrder = { 3014 }, level = 1, group = "AuraAddedChaosDamagePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232695173] = { "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket" }, } }, - ["ArmourPerEvasionRatingOnShieldUnique__1"] = { affix = "", "+5 to Armour per 5 Evasion Rating on Equipped Shield", statOrder = { 4383 }, level = 1, group = "ArmourPerEvasionRatingOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3088183606] = { "+5 to Armour per 5 Evasion Rating on Equipped Shield" }, } }, - ["EvasionRatingPerEnergyShieldOnShieldUnique__1"] = { affix = "", "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", statOrder = { 4384 }, level = 1, group = "EvasionRatingPerEnergyShieldOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1115914670] = { "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield" }, } }, - ["EnergyShieldPerArmourOnShieldUnique__1"] = { affix = "", "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield", statOrder = { 4382 }, level = 1, group = "EnergyShieldPerArmourOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3636098185] = { "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield" }, } }, - ["LifeLeechFromSpellsWith30BlockOnShieldUnique__1_"] = { affix = "", "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", statOrder = { 4381 }, level = 1, group = "LifeLeechFromSpellsWith30BlockOnShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3893109186] = { "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block" }, } }, - ["AngerNoReservationUnique__1"] = { affix = "", "Anger has no Reservation", statOrder = { 4693 }, level = 69, group = "AngerNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2189891129] = { "Anger has no Reservation" }, } }, - ["ClarityNoReservationUnique__1"] = { affix = "", "Clarity has no Reservation", statOrder = { 5791 }, level = 69, group = "ClarityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2250543633] = { "Clarity has no Reservation" }, } }, - ["DeterminationNoReservationUnique__1"] = { affix = "", "Determination has no Reservation", statOrder = { 6179 }, level = 69, group = "DeterminationNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1358697130] = { "Determination has no Reservation" }, } }, - ["DisciplineNoReservationUnique__1"] = { affix = "", "Discipline has no Reservation", statOrder = { 6195 }, level = 69, group = "DisciplineNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3708588508] = { "Discipline has no Reservation" }, } }, - ["GraceNoReservationUnique__1"] = { affix = "", "Grace has no Reservation", statOrder = { 6909 }, level = 69, group = "GraceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2930404958] = { "Grace has no Reservation" }, } }, - ["HasteNoReservationUnique__1"] = { affix = "", "Haste has no Reservation", statOrder = { 6944 }, level = 69, group = "HasteNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [751322171] = { "Haste has no Reservation" }, } }, - ["HatredNoReservationUnique__1_"] = { affix = "", "Hatred has no Reservation", statOrder = { 6948 }, level = 69, group = "HatredNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1391583476] = { "Hatred has no Reservation" }, } }, - ["PurityOfElementsNoReservationUnique__1_"] = { affix = "", "Purity of Elements has no Reservation", statOrder = { 9766 }, level = 69, group = "PurityOfElementsNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1826480903] = { "Purity of Elements has no Reservation" }, } }, - ["PurityOfFireNoReservationUnique__1"] = { affix = "", "Purity of Fire has no Reservation", statOrder = { 9769 }, level = 69, group = "PurityOfFireNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2278589942] = { "Purity of Fire has no Reservation" }, } }, - ["PurityOfIceNoReservationUnique__1_"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9772 }, level = 69, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["PurityOfLightningNoReservationUnique__1"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9775 }, level = 69, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["VitalityNoReservationUnique__1"] = { affix = "", "Vitality has no Reservation", statOrder = { 10536 }, level = 69, group = "VitalityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [438083873] = { "Vitality has no Reservation" }, } }, - ["WrathNoReservationUnique__1"] = { affix = "", "Wrath has no Reservation", statOrder = { 10630 }, level = 69, group = "WrathNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1865987277] = { "Wrath has no Reservation" }, } }, - ["EnvyNoReservationUnique__1"] = { affix = "", "Envy has no Reservation", statOrder = { 6471 }, level = 69, group = "EnvyNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2503479316] = { "Envy has no Reservation" }, } }, - ["MalevolenceNoReservationUnique__1"] = { affix = "", "Malevolence has no Reservation", statOrder = { 6168 }, level = 69, group = "MalevolenceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [585622486] = { "Malevolence has no Reservation" }, } }, - ["ZealotryNoReservationUnique__1"] = { affix = "", "Zealotry has no Reservation", statOrder = { 10724 }, level = 69, group = "ZealotryNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1741242318] = { "Zealotry has no Reservation" }, } }, - ["PrideNoReservationUnique__1"] = { affix = "", "Pride has no Reservation", statOrder = { 9717 }, level = 69, group = "PrideNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3554614456] = { "Pride has no Reservation" }, } }, - ["MinionAddedPhysicalDamageUnique__1"] = { affix = "", "Minions deal (90-102) to (132-156) additional Physical Damage", statOrder = { 3778 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (90-102) to (132-156) additional Physical Damage" }, } }, - ["DoubleDamageChanceImplicitMace1"] = { affix = "", "5% chance to deal Double Damage", statOrder = { 5664 }, level = 1, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, - ["AdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5040 }, level = 1, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2056575682] = { "+1 to maximum number of Summoned Holy Relics" }, } }, - ["HolyRelicCooldownRecoveryUnique__1"] = { affix = "", "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate", statOrder = { 7183 }, level = 1, group = "HolyRelicCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1583498502] = { "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate" }, } }, - ["ColdDamageTakenUnique__1"] = { affix = "", "5% reduced Cold Damage taken", statOrder = { 3394 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "5% reduced Cold Damage taken" }, } }, - ["ColdDamageTakenUnique__2"] = { affix = "", "10% increased Cold Damage taken", statOrder = { 3394 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "10% increased Cold Damage taken" }, } }, - ["OnslaughtEffectUnique__1"] = { affix = "", "100% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 1, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3151397056] = { "100% increased Effect of Onslaught on you" }, } }, - ["PhysicalDamageWhileResoluteTechniqueUnique__1__"] = { affix = "", "100% increased Physical Damage while you have Resolute Technique", statOrder = { 10844 }, level = 1, group = "PhysicalDamageWhileResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1258679667] = { "100% increased Physical Damage while you have Resolute Technique" }, } }, - ["IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills per Power Charge", statOrder = { 6327 }, level = 1, group = "IncreasedWeaponElementalDamagePercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4116409626] = { "(20-25)% increased Elemental Damage with Attack Skills per Power Charge" }, } }, - ["ArrowsAlwaysPierceAfterForkingUnique__1__"] = { affix = "", "Arrows Pierce all Targets after Forking", statOrder = { 4786 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all Targets after Forking" }, } }, - ["ArrowsThatPierceHaveCritMultiUnique__1"] = { affix = "", "Arrows that Pierce have +50% to Critical Strike Multiplier", statOrder = { 5956 }, level = 1, group = "ArrowsThatPierceHaveCritMulti", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1064778484] = { "Arrows that Pierce have +50% to Critical Strike Multiplier" }, } }, - ["SupportedByGreaterVolleyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 305 }, level = 1, group = "SupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, } }, - ["SupportedByIgniteProliferationUnique1"] = { affix = "", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 313 }, level = 1, group = "SupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, } }, - ["ChanceToBleedWithoutAvatarOfFireUnique__1"] = { affix = "", "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire", statOrder = { 10848 }, level = 1, group = "ChanceToBleedWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4070293064] = { "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire" }, } }, - ["FireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 6572 }, level = 1, group = "FireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3703926412] = { "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["PhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies", statOrder = { 9641 }, level = 1, group = "PhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3375415245] = { "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["PhysicalDamageTakenAsRandomElementUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 9628 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1904530666] = { "20% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, - ["StartEnergyShieldRechargeOnSkillUnique__1"] = { affix = "", "10% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6454 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "10% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["SpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "(50-100)% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10138 }, 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 = { 6730 }, 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 = { 10119 }, 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 = { 806 }, 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 = { 807, 807.1 }, level = 1, group = "TriggerRandomOfferingSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1663239249] = { "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you" }, [1560737213] = { "" }, } }, - ["LeftRingSpellProjectilesForkUnique__1_"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7986 }, 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 = { 7985 }, 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 = { 8012 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["RightRingSpellProjectilesCannotForkUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 8013 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["FireAndChaosDamageResistanceUnique__1__"] = { affix = "", "+(20-25)% to Fire and Chaos Resistances", statOrder = { 6554 }, level = 1, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(20-25)% to Fire and Chaos Resistances" }, } }, - ["TriggerArcaneWakeSkillUnique__1"] = { affix = "", "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", statOrder = { 769 }, level = 1, group = "TriggerArcaneWakeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3344568504] = { "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana" }, } }, - ["DoubleDamageWithWeaponUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage", statOrder = { 7930 }, level = 1, group = "DoubleDamageWithWeapon", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1506185293] = { "Attacks with this Weapon deal Double Damage" }, } }, - ["FocusCooldownRecoveryUnique__1_"] = { affix = "", "Focus has (30-50)% increased Cooldown Recovery Rate", statOrder = { 6658 }, 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 = { 3106 }, 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 = { 4338 }, 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 = { 5777 }, level = 67, group = "ChillNearbyEnemiesOnFocus", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2384145996] = { "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed" }, [1533152070] = { "" }, } }, - ["DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1"] = { affix = "", "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies", statOrder = { 7155 }, 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 = { 6316 }, level = 1, group = "ElementalDamageWhileAffectedBySextant", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [4022841749] = { "(30-40)% increased Elemental Damage while in an area affected by a Sextant" }, } }, - ["AttackSpeedPerMapModUnique__1"] = { affix = "", "3% increased Attack Speed for each Map Item Modifier affecting the Area", statOrder = { 4892 }, level = 1, group = "AttackSpeedPerMapMod", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2025297472] = { "3% increased Attack Speed for each Map Item Modifier affecting the Area" }, } }, - ["AttackDamagePerMapModUnique__1"] = { affix = "", "6% increased Attack Damage for each Map Item Modifier affecting the Area", statOrder = { 4854 }, level = 1, group = "AttackDamagePerMapMod", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [698336758] = { "6% increased Attack Damage for each Map Item Modifier affecting the Area" }, } }, - ["BleedOnCritUnique__1_"] = { affix = "", "50% chance to inflict Bleeding on Critical Strike with Attacks", statOrder = { 2490 }, level = 1, group = "BleedOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [2054257693] = { "50% chance to inflict Bleeding on Critical Strike with Attacks" }, } }, - ["MaimOnCritUnique__1"] = { affix = "", "50% chance to Maim Enemies on Critical Strike with Attacks", statOrder = { 8158 }, level = 1, group = "MaimOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [996483959] = { "50% chance to Maim Enemies on Critical Strike with Attacks" }, } }, - ["EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_"] = { affix = "", "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges", statOrder = { 2498 }, 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 = { 2499 }, 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 = { 10641 }, 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 = { 6921 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3587169341] = { "" }, [2894567787] = { "Spreads Tar when you Block" }, } }, - ["GainShapersPresenceUnique__1"] = { affix = "", "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", statOrder = { 6822 }, 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 = { 9748 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["AlternateFireAilmentUnique__1"] = { affix = "", "(25-50)% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2032, 2565 }, level = 1, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4198497576] = { "Cannot inflict Ignite" }, [606940191] = { "(25-50)% chance to Scorch Enemies" }, } }, - ["AlternateColdAilmentUnique__1"] = { affix = "", "(25-50)% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2035, 2567 }, level = 1, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2238174408] = { "(25-50)% chance to inflict Brittle" }, [612223930] = { "Cannot inflict Freeze or Chill" }, } }, - ["AlternateLightningAilmentUnique__1__"] = { affix = "", "(25-50)% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2039, 2568 }, level = 1, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [532324017] = { "(25-50)% chance to Sap Enemies" }, [990377349] = { "Cannot inflict Shock" }, } }, - ["PrismaticSkillsInflictScorchUnique_1"] = { affix = "", "Hits with Prismatic Skills always Scorch", statOrder = { 9723 }, level = 1, group = "PrismaticSkillsAlwaysScorch", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2324756482] = { "Hits with Prismatic Skills always Scorch" }, } }, - ["PrismaticSkillsInflictBrittleUnique_1"] = { affix = "", "Hits with Prismatic Skills always inflict Brittle", statOrder = { 9721 }, level = 1, group = "PrismaticSkillsAlwaysBrittle", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2034210174] = { "Hits with Prismatic Skills always inflict Brittle" }, } }, - ["PrismaticSkillsInflictSapUnique_1"] = { affix = "", "Hits with Prismatic Skills always Sap", statOrder = { 9722 }, level = 1, group = "PrismaticSkillsAlwaysSap", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2355907154] = { "Hits with Prismatic Skills always Sap" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-55)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(40-55)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(25-35)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+50% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+50% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-60)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(40-60)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__2_"] = { affix = "", "+(15-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(15-25)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__3"] = { affix = "", "+(8-12)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-12)% to Fire Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__2"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 2219 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 2219 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, - ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 826 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, - ["TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1"] = { affix = "", "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps", statOrder = { 548, 548.1 }, level = 70, group = "TriggerCurseOnTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1736212068] = { "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps" }, } }, - ["EnergyShieldLeechPerCurseUnique__1_"] = { affix = "", "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", statOrder = { 1728 }, level = 1, group = "EnergyShieldLeechPerCurse", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3734213780] = { "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy" }, } }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4339 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [33348259] = { "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped" }, } }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7170 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7169 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5809 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7449 }, 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 = { 6299 }, 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 = { 63 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 862 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(15-30)% reduced Duration" }, } }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 885 }, 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 = { 983 }, 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 = { 980 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 1021 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["ShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2227 }, level = 1, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationDuringFlaskEffectUnique__1"] = { affix = "", "Shocks you inflict during Effect spread to other Enemies within 2 metres", statOrder = { 1064 }, level = 85, group = "ShockProliferationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [911839512] = { "Shocks you inflict during Effect spread to other Enemies within 2 metres" }, } }, - ["ShockEffectDuringFlaskEffectUnique__1__"] = { affix = "", "(25-40)% increased Effect of Shocks you inflict during Effect", statOrder = { 1063 }, level = 1, group = "ShockEffectDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3338065776] = { "(25-40)% increased Effect of Shocks you inflict during Effect" }, } }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1917 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [209387074] = { "Enemies you kill are Shocked" }, } }, - ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4392, 4393 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [108334292] = { "Gain a Divine Charge on Hit" }, [3997368968] = { "+10 to maximum Divine Charges" }, } }, - ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4395, 4395.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 7914 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Strikes" }, [3638599682] = { "Never deal Critical Strikes" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Nearby Allies' Action Speed cannot be modified to below Base Value", statOrder = { 7906 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below Base Value" }, [628716294] = { "Action Speed cannot be modified to below Base Value" }, } }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8220 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8221 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 3007 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3767939384] = { "Nearby Allies have (4-6)% increased Defences per 100 Strength you have" }, } }, - ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 3006 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3941641418] = { "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have" }, } }, - ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have", statOrder = { 3008 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have" }, } }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 3009 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, - ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 691 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2721815210] = { "Grants Level 30 Precision Skill" }, } }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9703 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9704 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 233 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3274973940] = { "Socketed Gems are Supported by Level 25 Divine Blessing" }, } }, - ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 762 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHashes = { [3171958921] = { "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown" }, } }, - ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 835, 835.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [1378815167] = { "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown" }, } }, - ["MaximumLifeLeechAmountUnique__1"] = { affix = "", "50% reduced Maximum Recovery per Life Leech", statOrder = { 1729 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "50% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountUnique__2"] = { affix = "", "80% reduced Maximum Recovery per Life Leech", statOrder = { 1729 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "80% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountPerLifeReservedUnique__1"] = { affix = "", "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", statOrder = { 9154 }, level = 1, group = "MaximumLifeLeechAmountPerLifeReserved", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3389810339] = { "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved" }, } }, - ["LIfeReservationEfficiencyUnique__1"] = { affix = "", "(15-25)% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "(15-25)% increased Life Reservation Efficiency of Skills" }, } }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 3216 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2108380422] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksYouUseYourselfRepeatCountUnique__1"] = { affix = "", "Attacks you use yourself Repeat an additional time", statOrder = { 1905 }, level = 1, group = "AttacksYouUseYourselfRepeatCount", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [485236576] = { "Attacks you use yourself Repeat an additional time" }, } }, - ["AttacksYouUseYourselfAttackSpeedFinalUnique__1"] = { affix = "", "Attacks you use yourself have 50% more Attack Speed", statOrder = { 1906 }, level = 1, group = "AttacksYouUseYourselfAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2718073792] = { "Attacks you use yourself have 50% more Attack Speed" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10710 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10710 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10710 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10710 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10710 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7131 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7132 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7453 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7130 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 9169 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7455 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7117 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7118 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6574 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7116 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 9143 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6575 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7121 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7122 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5820 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7120 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 9132 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5822 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7126 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7127 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9642 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7124 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9986 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9649 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7113 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7114 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5743 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7112 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4618 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5748 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10052 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4127613649] = { "(20-30)% increased Skill Effect Duration while affected by Malevolence" }, } }, - ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7349 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3643449791] = { "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10475 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [34059570] = { "Unaffected by Poison while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10452 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4104891138] = { "Unaffected by Bleeding while affected by Malevolence" }, } }, - ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10665 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [3468843137] = { "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence" }, } }, - ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5988 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [2091518682] = { "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry" }, } }, - ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5476 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2444534954] = { "(10-15)% increased Cast Speed while affected by Zealotry" }, } }, - ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5857 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2163419452] = { "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds" }, } }, - ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5854 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2434030180] = { "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage" }, } }, - ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6728 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1919069577] = { "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1741 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3848992177] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1740 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2731416566] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5926 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [214835567] = { "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry" }, } }, - ["ZombiesCountAsCorpsesUnique__1"] = { affix = "", "Your Raised Zombies count as corpses", statOrder = { 9817 }, level = 1, group = "ZombiesCountAsCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3951269079] = { "Your Raised Zombies count as corpses" }, } }, - ["ZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9811 }, level = 1, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [16924183] = { "Raise Zombie does not require a corpse" }, } }, - ["ZombieIncreasedLifeUnique__1"] = { affix = "", "Raised Zombies have (80-100)% increased maximum Life", statOrder = { 1776 }, level = 1, group = "ZombieIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [927817294] = { "Raised Zombies have (80-100)% increased maximum Life" }, } }, - ["AdditionalPhysicalDamageReductionWhileBleedingUnique__1"] = { affix = "", "(10-15)% additional Physical Damage Reduction while Bleeding", statOrder = { 4586 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1089471428] = { "(10-15)% additional Physical Damage Reduction while Bleeding" }, } }, - ["DamageTakenGainedAsLifeUnique__1_"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__2"] = { affix = "", "(80-100)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(80-100)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__3"] = { affix = "", "(6-12)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__4"] = { affix = "", "(10-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-15)% of Damage taken Recouped as Life" }, } }, - ["MinimumEnduranceChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges while on Low Life", statOrder = { 9259 }, level = 1, group = "MinimumEnduranceChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2847937074] = { "+3 to Minimum Endurance Charges while on Low Life" }, } }, - ["MinimumPowerChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Power Charges while on Low Life", statOrder = { 9264 }, level = 1, group = "MinimumPowerChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3960918998] = { "+3 to Minimum Power Charges while on Low Life" }, } }, - ["SpellCriticalStrikeChanceIfKilledRecentlyUnique__1"] = { affix = "", "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently", statOrder = { 5929 }, level = 1, group = "SpellCriticalStrikeChanceIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1243114410] = { "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently" }, } }, - ["SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently", statOrder = { 5959 }, level = 1, group = "SpellCriticalStrikeMultiplierIfNotKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [729430714] = { "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently" }, } }, - ["RagingSpiritLifeUnique__1"] = { affix = "", "Summoned Raging Spirits have (25-40)% increased maximum Life", statOrder = { 9331 }, level = 1, group = "RagingSpiritLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3999870307] = { "Summoned Raging Spirits have (25-40)% increased maximum Life" }, } }, - ["RagingSpiritDurationUnique__1"] = { affix = "", "Summon Raging Spirit has (20-30)% increased Duration", statOrder = { 3417 }, level = 1, group = "RagingSpiritDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has (20-30)% increased Duration" }, } }, - ["RagingSpiritChaosDamageTakenUnique__1"] = { affix = "", "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage", statOrder = { 9332 }, level = 68, group = "RagingSpiritChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [1063920218] = { "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage" }, } }, - ["LosePowerChargeWhenHitUnique__1"] = { affix = "", "Lose a Power Charge when Hit", statOrder = { 10502 }, level = 1, group = "LosePowerChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4023578899] = { "Lose a Power Charge when Hit" }, } }, - ["SpellDamagePerLifeUnique__1"] = { affix = "", "5% increased Spell Damage per 100 Player Maximum Life", statOrder = { 10150 }, level = 1, group = "SpellDamagePerLife", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3491815140] = { "5% increased Spell Damage per 100 Player Maximum Life" }, } }, - ["SpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "5% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10137 }, level = 1, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [3775574601] = { "5% increased Spell Critical Strike Chance per 100 Player Maximum Life" }, } }, - ["SacrificeLifeOnSpellSkillUnique__1"] = { affix = "", "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill", statOrder = { 9954 }, level = 1, group = "SacrificeLifeOnSpellSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [545408899] = { "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill" }, } }, - ["PercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6181 }, level = 1, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2022724400] = { "15% increased Dexterity if Strength is higher than Intelligence" }, } }, - ["CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1"] = { affix = "", "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence", statOrder = { 5961 }, level = 1, group = "CriticalStrikeMultiplierIfDexterityHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2328588114] = { "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence" }, } }, - ["ElementalDamagePerDexterityUnique__1"] = { affix = "", "1% increased Elemental Damage per 10 Dexterity", statOrder = { 6310 }, 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 = { 9160 }, 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 = { 724 }, 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 = { 7929 }, level = 1, group = "ElementalAilmentsOnYouInsteadOfAllies", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [979288792] = { "Enemies inflict Elemental Ailments on you instead of nearby Allies" }, [3151718243] = { "" }, } }, - ["UnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5060 }, level = 1, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["KeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10804 }, 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 = { 6550 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-50)% faster" }, } }, - ["TriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 818 }, level = 1, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2935409762] = { "Trigger Level 5 Rain of Arrows when you Attack with a Bow" }, } }, - ["TriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 840 }, level = 1, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [767464019] = { "Trigger Level 5 Toxic Rain when you Attack with a Bow" }, } }, - ["CursesRemainOnDeathUnique__1_"] = { affix = "", "Non-Aura Curses you inflict are not removed from Dying Enemies", statOrder = { 6015 }, level = 1, group = "CursesRemainOnDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [847744351] = { "Non-Aura Curses you inflict are not removed from Dying Enemies" }, } }, - ["EnemiesNearCursesBlindAndExplodeUnique__1"] = { affix = "", "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage", statOrder = { 6392, 6392.1, 6392.2 }, level = 1, group = "EnemiesNearCursesBlindAndExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1509756274] = { "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage" }, } }, - ["WarcryCooldownIs2SecondsUnique__1"] = { affix = "", "Warcry Skills' Cooldown Time is 4 seconds", statOrder = { 10574 }, level = 1, group = "WarcryCooldownIs2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [684268017] = { "Warcry Skills' Cooldown Time is 4 seconds" }, } }, - ["CriticalStrikeMultiplierIs250Unique__1"] = { affix = "", "Your Critical Strike Multiplier is 300%", statOrder = { 5957 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [824024007] = { "Your Critical Strike Multiplier is 300%" }, } }, - ["RageOnAttackCritUnique__1"] = { affix = "", "Gain 1 Rage on Critical Strike with Attacks", statOrder = { 7312 }, level = 1, group = "RageOnAttackCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1043982313] = { "Gain 1 Rage on Critical Strike with Attacks" }, } }, - ["RageOnMeleeHitUnique__1"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6849 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, - ["PhysicalAddedAsFirePerRageUnique__1"] = { affix = "", "Every Rage also grants 1% of Physical Damage as Extra Fire Damage", statOrder = { 9633 }, 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 = { 7877 }, 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 = { 1211 }, level = 1, group = "AttackDamageWhileHoldingShield", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(10-15)% increased Attack Damage while holding a Shield" }, } }, - ["DisplayCowardsTrialWavesOfMonsters"] = { affix = "", "Contains waves of Monsters", statOrder = { 6210 }, level = 1, group = "DisplayCowardsTrialWavesOfMonsters", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787444936] = { "Contains waves of Monsters" }, } }, - ["DisplayCowardsTrialWavesOfUndeadMonsters"] = { affix = "", "Contains additional waves of Undead Monsters", statOrder = { 6211 }, level = 1, group = "DisplayCowardsTrialWavesOfUndeadMonsters", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1968038301] = { "Contains additional waves of Undead Monsters" }, } }, - ["CowardsTrialExtraGhosts___"] = { affix = "", "Area contains additional waves of Ghosts", statOrder = { 8419 }, level = 1, group = "CowardsTrialExtraGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3397728378] = { "Area contains additional waves of Ghosts" }, } }, - ["CowardsTrialExtraPhantasms"] = { affix = "", "Area contains additional waves of Phantasms", statOrder = { 8421 }, level = 1, group = "CowardsTrialExtraPhantasms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2681416653] = { "Area contains additional waves of Phantasms" }, } }, - ["CowardsTrialExtraZombies"] = { affix = "", "Area contains additional waves of Zombies", statOrder = { 8425 }, level = 1, group = "CowardsTrialExtraZombies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2724985127] = { "Area contains additional waves of Zombies" }, } }, - ["CowardsTrialExtraRagingSpirits"] = { affix = "", "Area contains additional waves of Raging Spirits", statOrder = { 8422 }, level = 1, group = "CowardsTrialExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1217959763] = { "Area contains additional waves of Raging Spirits" }, } }, - ["CowardsTrialExtraRhoas___"] = { affix = "", "Area contains additional waves of Bone Rhoas", statOrder = { 8423 }, level = 1, group = "CowardsTrialExtraRhoas", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2210267337] = { "Area contains additional waves of Bone Rhoas" }, } }, - ["CowardsTrialExtraOriathCitizens"] = { affix = "", "Area contains additional waves of Oriathan Zombies", statOrder = { 8420 }, level = 1, group = "CowardsTrialExtraOriathCitizens", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4261620841] = { "Area contains additional waves of Oriathan Zombies" }, } }, - ["CowardsTrialExtraSkeletonCannons"] = { affix = "", "Area contains additional waves of Ravager Maws", statOrder = { 8424 }, level = 1, group = "CowardsTrialExtraSkeletonCannons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2481080006] = { "Area contains additional waves of Ravager Maws" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10393 }, 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 = { 10036 }, 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 = { 5733 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, - ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4723 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6309 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6344 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", statOrder = { 9501 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9974 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9971 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9275 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 9268 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8202 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 8175 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9492 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 10002 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, - ["DealNoChaosDamageUnique_1"] = { affix = "", "Deal no Chaos Damage", statOrder = { 5012 }, level = 1, group = "DealNoChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, - ["LightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2504 }, level = 1, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3519807287] = { "Increases and Reductions to Light Radius also apply to Damage" }, } }, - ["LightRadiusToAreaOfEffectUnique__1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value", statOrder = { 2503 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value" }, } }, - ["CanRollMinionModifiersImplicitWandAtlas1"] = { affix = "", "Can roll Minion Modifiers", statOrder = { 22 }, level = 1, group = "CanRollMinionModifiers", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2994708956] = { "Can roll Minion Modifiers" }, } }, - ["MinionDamageImplicitWand1"] = { affix = "", "Minions deal (26-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-30)% increased Damage" }, } }, - ["MinionDamageImplicitWand2"] = { affix = "", "Minions deal (20-24)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, - ["MinionDamageImplicitWand3"] = { affix = "", "Minions deal (12-16)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-16)% increased Damage" }, } }, - ["MinionDamageImplicitShield1"] = { affix = "", "Minions deal (5-10)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, - ["MinionElementalResistanceImplicitRing1"] = { affix = "", "Minions have +(10-15)% to all Elemental Resistances", statOrder = { 2917 }, level = 32, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-15)% to all Elemental Resistances" }, } }, - ["TulBreachRingImplicit"] = { affix = "", "+2% to maximum Cold Resistance", "Cannot roll Modifiers of Non-Cold Damage Types", statOrder = { 1634, 5276 }, level = 40, group = "TulBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4215265273] = { "Cannot roll Modifiers of Non-Cold Damage Types" }, } }, - ["XophBreachRingImplicit"] = { affix = "", "+2% to maximum Fire Resistance", "Cannot roll Modifiers of Non-Fire Damage Types", statOrder = { 1628, 5278 }, level = 40, group = "XophBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4040327616] = { "Cannot roll Modifiers of Non-Fire Damage Types" }, [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["EshBreachRingImplicit"] = { affix = "", "+2% to maximum Lightning Resistance", "Cannot roll Modifiers of Non-Lightning Damage Types", statOrder = { 1639, 5275 }, level = 40, group = "EshBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [1765111378] = { "Cannot roll Modifiers of Non-Lightning Damage Types" }, } }, - ["UulNetolBreachRingImplicit"] = { affix = "", "3% additional Physical Damage Reduction", "Cannot roll Modifiers of Non-Physical Damage Types", statOrder = { 2278, 5277 }, level = 40, group = "UulNetolBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [361491825] = { "Cannot roll Modifiers of Non-Physical Damage Types" }, [3771516363] = { "3% additional Physical Damage Reduction" }, } }, - ["ChayulaBreachRingImplicit"] = { affix = "", "+2% to maximum Chaos Resistance", "Cannot roll Modifiers of Non-Chaos Damage Types", statOrder = { 1645, 5274 }, level = 40, group = "ChayulaBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3363758458] = { "Cannot roll Modifiers of Non-Chaos Damage Types" }, [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["FormlessBreachRingImplicit"] = { affix = "", "(5-7)% increased Global Defences", statOrder = { 2838 }, level = 53, group = "FormlessBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-7)% increased Global Defences" }, } }, - ["KineticWandImplicit"] = { affix = "", "Cannot roll Caster Modifiers", statOrder = { 7326 }, level = 1, group = "KineticWandImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4082780964] = { "Cannot roll Caster Modifiers" }, } }, - ["MinionPhysicalToFirePerRedSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Red Socket", statOrder = { 2724 }, level = 1, group = "MinionPhysicalToFirePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, tradeHashes = { [2139569643] = { "Minions convert 25% of Physical Damage to Fire Damage per Red Socket" }, } }, - ["MinionPhysicalToColdPerGreenSocket_"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Green Socket", statOrder = { 2728 }, level = 1, group = "MinionPhysicalToColdPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [306443498] = { "Minions convert 25% of Physical Damage to Cold Damage per Green Socket" }, } }, - ["MinionPhysicalToLightningPerBlueSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket", statOrder = { 2730 }, level = 1, group = "MinionPhysicalToLightningPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, tradeHashes = { [3366426512] = { "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket" }, } }, - ["MinionPhysicalToChaosPerWhiteSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per White Socket", statOrder = { 2734 }, level = 1, group = "MinionPhysicalToChaosPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [199362230] = { "Minions convert 25% of Physical Damage to Chaos Damage per White Socket" }, } }, - ["MinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have (5-10)% chance to Freeze, Shock and Ignite", statOrder = { 9286 }, level = 1, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "minion", "ailment" }, tradeHashes = { [1994549323] = { "Minions have (5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["NonChilledEnemiesBleedAndChillUnique__1_"] = { affix = "", "Non-Chilled Enemies you inflict Bleeding on are Chilled", statOrder = { 9488 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [398940995] = { "Non-Chilled Enemies you inflict Bleeding on are Chilled" }, } }, - ["ChilledWhileBleedingUnique__1_"] = { affix = "", "You are Chilled while you are Bleeding", statOrder = { 5780 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [67132951] = { "You are Chilled while you are Bleeding" }, } }, - ["BleedingEnemiesShatterOnKillUnique__1"] = { affix = "", "Bleeding Enemies you Kill with Hits Shatter", statOrder = { 9989 }, level = 1, group = "BleedingEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [881917501] = { "Bleeding Enemies you Kill with Hits Shatter" }, } }, - ["NonChilledEnemiesPoisonAndChillUnique__1"] = { affix = "", "Non-Chilled Enemies you Poison are Chilled", statOrder = { 9489 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3998191356] = { "Non-Chilled Enemies you Poison are Chilled" }, } }, - ["ChilledWhilePoisonedUnique__1"] = { affix = "", "You are Chilled when you are Poisoned", statOrder = { 5781 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1802660259] = { "You are Chilled when you are Poisoned" }, } }, - ["PoisonedEnemiesShatterOnKillUnique__1"] = { affix = "", "Poisoned Enemies you Kill with Hits Shatter", statOrder = { 9990 }, level = 1, group = "PoisonedEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350228283] = { "Poisoned Enemies you Kill with Hits Shatter" }, } }, - ["DamagePerZombieUnique__1"] = { affix = "", "(5-8)% increased Damage per Raised Zombie", statOrder = { 6023 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3868443508] = { "(5-8)% increased Damage per Raised Zombie" }, } }, - ["ElementalDamageTakenPerZombieUnique__1"] = { affix = "", "1% less Elemental Damage taken per Raised Zombie", statOrder = { 6319 }, level = 1, group = "ElementalDamageTakenPerZombie", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [512740886] = { "1% less Elemental Damage taken per Raised Zombie" }, } }, - ["LoseEnduranceChargeOnFortifyGainUnique__1"] = { affix = "", "(20-25)% chance to lose an Endurance Charge when you gain Fortification", statOrder = { 4400 }, level = 1, group = "LoseEnduranceChargeOnFortifyGain", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1087146228] = { "(20-25)% chance to lose an Endurance Charge when you gain Fortification" }, } }, - ["LoseFrenzyChargeOnTravelSkillUnique__1"] = { affix = "", "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill", statOrder = { 4399 }, level = 1, group = "LoseFrenzyChargeOnTravelSkill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [445906009] = { "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill" }, } }, - ["LosePowerChargeOnElusiveGainUnique__1_"] = { affix = "", "(20-25)% chance to lose a Power Charge when you gain Elusive", statOrder = { 4401 }, level = 1, group = "LosePowerChargeOnElusiveGain", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1819086604] = { "(20-25)% chance to lose a Power Charge when you gain Elusive" }, } }, - ["ElusiveBuffEffectPerPowerChargeUnique__1"] = { affix = "", "(7-10)% increased Effect of Elusive on you per Power Charge", statOrder = { 4398 }, level = 1, group = "ElusiveBuffEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3545269928] = { "(7-10)% increased Effect of Elusive on you per Power Charge" }, } }, - ["TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1"] = { affix = "", "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", statOrder = { 4397 }, level = 1, group = "TravelSkillCooldownRecoveryPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3083201633] = { "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge" }, } }, - ["MaximumFortificationPerEnduranceChargeUnique__1"] = { affix = "", "+1 to maximum Fortification per Endurance Charge", statOrder = { 4396 }, level = 1, group = "MaximumFortificationPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2032578228] = { "+1 to maximum Fortification per Endurance Charge" }, } }, - ["MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1"] = { affix = "", "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", statOrder = { 1815 }, level = 75, group = "MaximumFrenzyChargesEqualToMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2238831336] = { "Your Maximum Frenzy Charges is equal to your Maximum Power Charges" }, } }, - ["MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1"] = { affix = "", "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", statOrder = { 1810 }, level = 75, group = "MaximumEnduranceChargesEqualToMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3443585706] = { "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges" }, } }, - ["MinionAttacksTauntOnHitChanceUnique__1"] = { affix = "", "Minions have 5% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 55, group = "MinionAttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have 5% chance to Taunt on Hit with Attacks" }, } }, - ["MinionCausticCloudOnDeathUnique__1_"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3447 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["MinionBurningCloudOnDeathUnique__1"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second", statOrder = { 9308 }, level = 55, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second" }, } }, - ["TotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3793 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["MinionAddedColdDamageUnique__1"] = { affix = "", "Minions deal (25-35) to (50-65) additional Cold Damage", statOrder = { 3775 }, level = 1, group = "MinionAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (25-35) to (50-65) additional Cold Damage" }, } }, - ["MineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4241 }, level = 1, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [807450540] = { "1% of Damage dealt by your Mines is Leeched to you as Life" }, } }, - ["LifeEnergyShieldRecoveryRateUnique__1"] = { affix = "", "(20-30)% reduced Recovery rate of Life and Energy Shield", statOrder = { 7345 }, 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 = { 7348 }, 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 = { 8148 }, 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 = { 10761, 10761.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 = { 10762, 10762.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 = { 10763 }, 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 = { 8121 }, level = 1, group = "PassivesGrantUnarmedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [3087912144] = { "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["MovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9414 }, 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 = { 4386 }, 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 = { 6097 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [54812069] = { "10% of Damage from Hits is taken from your Raised Spectres' Life before you" }, } }, - ["MinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 9304 }, level = 1, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos", "minion" }, tradeHashes = { [247168950] = { "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["LifeRegenerationPerZombieUnique__1"] = { affix = "", "Regenerate 0.6% of Life per second for each Raised Zombie", statOrder = { 7427 }, level = 1, group = "LifeRegenerationPerZombie", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841618445] = { "Regenerate 0.6% of Life per second for each Raised Zombie" }, } }, - ["ManaRegenerationPerSpectreUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate per Raised Spectre", statOrder = { 8215 }, level = 1, group = "ManaRegenerationPerSpectre", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2666795121] = { "30% increased Mana Regeneration Rate per Raised Spectre" }, } }, - ["AttackBlockPerSkeletonUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per Summoned Skeleton", statOrder = { 4544 }, level = 1, group = "AttackBlockPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2445675562] = { "+1% Chance to Block Attack Damage per Summoned Skeleton" }, } }, - ["AttackAndCastSpeedPerRagingSpiritUnique__1"] = { affix = "", "2% increased Attack and Cast Speed per Summoned Raging Spirit", statOrder = { 4824 }, level = 1, group = "AttackAndCastSpeedPerRagingSpirit", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3133579934] = { "2% increased Attack and Cast Speed per Summoned Raging Spirit" }, } }, - ["SupportedByMeatShieldUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Meat Shield", statOrder = { 339 }, level = 1, group = "SupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [858460086] = { "Socketed Gems are Supported by Level 1 Meat Shield" }, } }, - ["ReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5907 }, level = 1, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2485187927] = { "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster" }, } }, - ["FireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 75%", statOrder = { 1629 }, level = 1, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [763311546] = { "Fire Resistance is 75%" }, } }, - ["ColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 75%", statOrder = { 1635 }, level = 1, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [496075050] = { "Cold Resistance is 75%" }, } }, - ["LightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 75%", statOrder = { 1640 }, level = 1, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1942151132] = { "Lightning Resistance is 75%" }, } }, - ["ReducedFireResistanceUnique__1"] = { affix = "", "(50-55)% reduced Fire Resistance", statOrder = { 1633 }, level = 1, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(50-55)% reduced Fire Resistance" }, } }, - ["ReducedColdResistanceUnique__1"] = { affix = "", "(50-55)% reduced Cold Resistance", statOrder = { 1638 }, level = 1, group = "IncreasedColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4252311791] = { "(50-55)% reduced Cold Resistance" }, } }, - ["ReducedLightningResistanceUnique__1"] = { affix = "", "(50-55)% reduced Lightning Resistance", statOrder = { 1644 }, level = 1, group = "IncreasedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2249211872] = { "(50-55)% reduced Lightning Resistance" }, } }, - ["ManaRegenerationRateWhileMovingUnique__1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(30-40)% increased Mana Regeneration Rate while moving" }, } }, - ["FungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6699 }, level = 1, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [799872465] = { "You have Fungal Ground around you while stationary" }, } }, - ["TriggerFungalGroundOnKillUnique__1_"] = { affix = "", "Trigger Level 10 Contaminate when you Kill an Enemy", statOrder = { 793 }, level = 1, group = "TriggerFungalGroundOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3159312340] = { "Trigger Level 10 Contaminate when you Kill an Enemy" }, } }, - ["EnemiesOnFungalGroundExplodeUnique__1"] = { affix = "", "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage", statOrder = { 6390 }, level = 1, group = "EnemiesOnFungalGroundExplode", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2224428651] = { "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage" }, } }, - ["FrostblinkDurationUnique__1_"] = { affix = "", "Frostblink has 50% increased Duration", statOrder = { 7192 }, level = 1, group = "FrostblinkDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3941271999] = { "Frostblink has 50% increased Duration" }, } }, - ["GrantsFrostblinkSkillUnique__1"] = { affix = "", "Grants Level 10 Frostblink Skill", statOrder = { 627 }, level = 1, group = "GrantsFrostblinkSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2911866787] = { "Grants Level 10 Frostblink Skill" }, } }, - ["AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8"] = { affix = "", "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem", statOrder = { 2720 }, level = 1, group = "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1302700515] = { "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem" }, } }, - ["VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8"] = { affix = "", "You have Vaal Pact while all Socketed Gems are Red", statOrder = { 10836 }, level = 1, group = "VaalPactIfAllSocketedGemsAreRed", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "gem" }, tradeHashes = { [3242537102] = { "You have Vaal Pact while all Socketed Gems are Red" }, } }, - ["MultipleEnchantmentsAllowedUnique__1"] = { affix = "", "Can have a second Enchantment Modifier", statOrder = { 18 }, level = 1, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have a second Enchantment Modifier" }, } }, - ["MultipleEnchantmentsAllowedUnique__2"] = { affix = "", "Can have 3 additional Enchantment Modifiers", statOrder = { 18 }, level = 65, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Enchantment Modifiers" }, } }, - ["AdditionalProjectilesUnique__1__"] = { affix = "", "Skills fire 2 additional Projectiles", statOrder = { 1797 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["ProjectileModifiersApplyToSplitsUnique__1"] = { affix = "", "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards", statOrder = { 9385, 9385.1 }, level = 50, group = "ProjectileModifiersApplyToSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2057712935] = { "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards" }, } }, - ["MaximumLifeManaEnergyShieldUnique__1"] = { affix = "", "(9-21)% increased maximum Life, Mana and Global Energy Shield", statOrder = { 1575 }, level = 1, group = "MaximumLifeManaEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [3899352861] = { "(9-21)% increased maximum Life, Mana and Global Energy Shield" }, } }, - ["TransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4606 }, level = 1, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [881645355] = { "Transfiguration of Body" }, } }, - ["TransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4608 }, level = 1, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, } }, - ["TransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4602 }, level = 1, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3268519799] = { "Transfiguration of Soul" }, } }, - ["MaximumEnergyShieldPerReservedLifeUnique__1"] = { affix = "", "+30 to maximum Energy Shield per 100 Reserved Life", statOrder = { 1571 }, level = 1, group = "MaximumEnergyShieldPerReservedLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4270089231] = { "+30 to maximum Energy Shield per 100 Reserved Life" }, } }, - ["ChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "Chaos Damage is taken from Mana before Life", statOrder = { 5741 }, level = 1, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHashes = { [3967028570] = { "Chaos Damage is taken from Mana before Life" }, } }, - ["DrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds", statOrder = { 9554, 9554.1 }, level = 1, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [820827484] = { "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds" }, } }, - ["MultipleOfferingsAllowedUnique__1_"] = { affix = "", "You can have an Offering of each type", statOrder = { 4643 }, level = 62, group = "MultipleOfferingsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [230941555] = { "You can have an Offering of each type" }, } }, - ["OfferingDurationUnique__1"] = { affix = "", "Offering Skills have 50% reduced Duration", statOrder = { 9551 }, level = 1, group = "OfferingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have 50% reduced Duration" }, } }, - ["MaximumBlockChanceIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 9120 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, - ["PhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9615 }, level = 1, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, - ["AvoidElementalDamagePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing", statOrder = { 4949 }, level = 1, group = "AvoidElementalDamagePhasing", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [143510471] = { "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing" }, } }, - ["ApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage", statOrder = { 9503 }, level = 1, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1345113611] = { "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage" }, } }, - ["CriticalStrikesNotAlwaysApplyAilmentsUnique__1"] = { affix = "", "Critical Strikes do not inherently inflict non-Damaging Ailments", statOrder = { 5985 }, level = 1, group = "CriticalStrikesNotAlwaysApplyAilments", weightKey = { }, weightVal = { }, modTags = { "critical", "ailment" }, tradeHashes = { [249545292] = { "Critical Strikes do not inherently inflict non-Damaging Ailments" }, } }, - ["PermanentPhantasmUnique__1"] = { affix = "", "Summoned Phantasms have no Duration", statOrder = { 10304 }, level = 1, group = "PermanentPhantasm", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1994138363] = { "Summoned Phantasms have no Duration" }, } }, - ["PhantasmGrantsBuffUnique__1"] = { affix = "", "Each Summoned Phantasm grants you Phantasmal Might", statOrder = { 10303 }, level = 1, group = "PhantasmGrantsBuff", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [943553365] = { "Each Summoned Phantasm grants you Phantasmal Might" }, } }, - ["CorruptUntilFiveImplicits"] = { affix = "", "Can be modified while Corrupted", "Can have up to 5 Implicit Modifiers while Item has this Modifier", statOrder = { 16, 19 }, level = 1, group = "ModifyableWhileCorrupted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161341806] = { "Can have up to 5 Implicit Modifiers while Item has this Modifier" }, [1161337167] = { "Can be modified while Corrupted" }, } }, - ["ModifyableWhileCorruptedUnique__1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 16 }, level = 1, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, - ["MinionsUseFlaskOnSummonUnique__1__"] = { affix = "", "Your Minions use your Flasks when summoned", statOrder = { 2187 }, level = 50, group = "MinionsUseFlaskOnSummon", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1827636152] = { "Your Minions use your Flasks when summoned" }, } }, - ["MinionFlaskChargesUsedUnique__1"] = { affix = "", "Minions have (25-40)% reduced Flask Charges used", statOrder = { 2191 }, 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 = { 2193 }, 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 = { 9215 }, 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 = { 9514 }, level = 50, group = "NovaSkillsTargetLocation", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [728246008] = { "Nova Spells Cast at the targeted location instead of around you" }, } }, - ["AttackAndCastSpeedFortifyUnique__1"] = { affix = "", "(15-25)% increased Attack and Cast Speed while at maximum Fortification", statOrder = { 2273 }, 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 = { 2271, 2272 }, level = 65, group = "AlternateFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3560157887] = { "You do not inherently take less Damage for having Fortification" }, [2731261141] = { "+4% chance to Suppress Spell Damage per Fortification" }, } }, - ["MapAreaContainsExiles__"] = { affix = "", "Area is inhabited by 10 additional Rogue Exiles", statOrder = { 2338 }, level = 1, group = "MapAreaContainsExiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3550168289] = { "Area is inhabited by 10 additional Rogue Exiles" }, } }, - ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 819 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [768430540] = { "" }, [3451043685] = { "Triggers Level 20 Reflection when Equipped" }, } }, - ["FireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, 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 = { 5031 }, 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 = { 7896 }, level = 1, group = "NearbyEnemiesIncreasedFireColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [4273356746] = { "Nearby Enemies have 50% increased Fire and Cold Resistances" }, [4252311791] = { "50% increased Cold Resistance" }, [1680060098] = { "50% increased Fire Resistance" }, } }, - ["MetamorphosisItemisedBossDifficult"] = { affix = "", "50% more Life", "50% more Damage", statOrder = { 5267, 6261 }, level = 1, group = "MetamorphosisItemisedBossDifficult", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2692483763] = { "50% more Life" }, [1724092423] = { "50% more Damage" }, } }, - ["ChanceToImpaleUnique__1"] = { affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, - ["MapAddsExtraSynthesisMods"] = { affix = "", "Map has (3-5) additional random Modifiers", statOrder = { 8240 }, level = 1, group = "MapAddsExtraSynthesisMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4003278965] = { "Map has (3-5) additional random Modifiers" }, } }, - ["MapAddsExtraSynthesisModsCortexReplica"] = { affix = "", "Map has (6-8) additional random Modifiers", statOrder = { 8240 }, level = 1, group = "MapAddsExtraSynthesisMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4003278965] = { "Map has (6-8) additional random Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialMods"] = { affix = "", "Map has (2-4) additional Synthesis Global Modifiers", statOrder = { 8241 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (2-4) additional Synthesis Global Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialModsCortex"] = { affix = "", "Map has (4-6) additional Synthesis Global Modifiers", statOrder = { 8241 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (4-6) additional Synthesis Global Modifiers" }, } }, - ["MapAddsExtraSynthesisSpecialModsCortexReplica"] = { affix = "", "Map has (4-6) additional Synthesis Global Modifiers", statOrder = { 8241 }, level = 1, group = "MapAddsExtraSynthesisSpecialMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132807290] = { "Map has (4-6) additional Synthesis Global Modifiers" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 8019 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 8016 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique__1"] = { affix = "", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique_2"] = { affix = "", "(20-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, 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 = { 5783 }, 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 = { 5725 }, 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 = { 1142 }, 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 = { 10087 }, level = 1, group = "AdditionanalMaxStackSnipeUnique", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3821882617] = { "+2 to maximum Snipe Stages" }, } }, - ["GrantsHighLevelSnipeUnique__1"] = { affix = "", "Grants Level 30 Snipe Skill", statOrder = { 64 }, 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 = { 383, 383.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 = { 10175 }, 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 = { 10175 }, 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 = { 10175 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(14-20)% chance to Suppress Spell Damage while Channelling" }, } }, - ["SupportSkitterBotAilmentAuraReplaceWithCurse____1"] = { affix = "", "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", statOrder = { 7988, 8015 }, level = 65, group = "UniqueReplaceSkitterbotAilmentAura", weightKey = { }, weightVal = { }, modTags = { "caster", "minion", "curse" }, tradeHashes = { [1809329372] = { "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead" }, [625885138] = { "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead" }, } }, - ["AttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana", statOrder = { 4890 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana" }, } }, - ["LoseManaOnAttackSkillUnique__1"] = { affix = "", "Lose 3% of Mana when you use an Attack Skill", statOrder = { 8147 }, level = 1, group = "LoseManaOnAttackSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [113147867] = { "Lose 3% of Mana when you use an Attack Skill" }, } }, - ["EnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10704 }, level = 1, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780297117] = { "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage" }, } }, - ["AllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10700 }, level = 1, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3359218839] = { "All Damage inflicts Poison while affected by Glorious Madness" }, } }, - ["SpellBlockWhileInOffHandUnique_1"] = { affix = "", "+(30-45)% Chance to Block Spell Damage while in Off Hand", statOrder = { 1166 }, level = 1, group = "SpellBlockWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040964235] = { "+(30-45)% Chance to Block Spell Damage while in Off Hand" }, } }, - ["AllDamageFromTriggeredSpellsCanPoisonUnique_1"] = { affix = "", "All Damage with Triggered Spells can Poison", statOrder = { 10432 }, level = 85, group = "AllDamageFromTriggeredSpellsCanPoison", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [373509484] = { "All Damage with Triggered Spells can Poison" }, } }, - ["TriggeredSpellsPoisonOnHitUnique_1"] = { affix = "", "Triggered Spells Poison on Hit", statOrder = { 10431 }, level = 1, group = "TriggeredSpellsPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [3484434547] = { "Triggered Spells Poison on Hit" }, } }, - ["SupportVirulenceSpellsCastOnBlockUnique_1"] = { affix = "", "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", statOrder = { 833 }, level = 1, group = "CastSocketedSpellsOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [1565744562] = { "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown" }, } }, - ["FortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+60 to maximum Fortification while affected by Glorious Madness", statOrder = { 10717 }, level = 1, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2611224062] = { "+60 to maximum Fortification while affected by Glorious Madness" }, } }, - ["DoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10701 }, level = 1, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1299868012] = { "20% chance to deal Double Damage while affected by Glorious Madness" }, } }, - ["ElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10706 }, level = 1, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909952544] = { "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness" }, } }, - ["ElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10708 }, level = 1, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1065479853] = { "Immune to Elemental Ailments while affected by Glorious Madness" }, } }, - ["MovementSpeedUnique_42"] = { affix = "", "30% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["GrantEmbraceMadnessSkillUnique1"] = { affix = "", "Grants Level 1 Embrace Madness Skill", statOrder = { 706 }, level = 1, group = "GrantEmbraceMadnessSkillDisplay", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1749783861] = { "Grants Level 1 Embrace Madness Skill" }, } }, - ["AttackSpeedAfterSavageHitTakenUnique__1"] = { affix = "", "40% increased Attack Speed if you've taken a Savage Hit Recently", statOrder = { 3452 }, level = 1, group = "AttackSpeedAfterSavageHitTaken", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3842406602] = { "40% increased Attack Speed if you've taken a Savage Hit Recently" }, } }, - ["FrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6759 }, level = 1, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [911695185] = { "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range" }, } }, - ["BleedDotMultiplierPerFrenzyChargeUnique__1_"] = { affix = "", "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge", statOrder = { 5111 }, level = 1, group = "BleedDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2583415204] = { "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge" }, } }, - ["FasterBleedPerFrenzyChargeUnique__1"] = { affix = "", "Bleeding you inflict deals Damage 4% faster per Frenzy Charge", statOrder = { 6548 }, level = 1, group = "FasterBleedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1670470989] = { "Bleeding you inflict deals Damage 4% faster per Frenzy Charge" }, } }, - ["CriticalBleedDotMultiplierUnique__1_"] = { affix = "", "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes", statOrder = { 1254 }, level = 1, group = "CriticalBleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1454648374] = { "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes" }, } }, - ["BleedDotMultiplier2HImplicit1"] = { affix = "", "+20% to Damage over Time Multiplier for Bleeding", statOrder = { 1253 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+20% to Damage over Time Multiplier for Bleeding" }, } }, - ["LocalWitherOnHitChanceUnique__2"] = { affix = "", "Inflict Withered for 2 seconds on Hit with this Weapon", statOrder = { 4416 }, level = 1, group = "LocalWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1226121733] = { "Inflict Withered for 2 seconds on Hit with this Weapon" }, } }, - ["WitherOnHitChanceUnique__1"] = { affix = "", "(20-25)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4402 }, 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 = { 5445 }, 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 = { 4403, 4403.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 = { 5912 }, level = 1, group = "ActivateHeraldOfThunderOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [278339309] = { "Herald of Thunder also creates a storm when you Shock an Enemy" }, } }, - ["TakeDamageWhenHeraldOfThunderHitsUnique__1__"] = { affix = "", "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy", statOrder = { 10349 }, 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 = { 7129 }, 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 = { 10296, 10296.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 = { 4405, 4406, 4407, 6839 }, 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 = { 4405, 4406, 6831, 6839 }, level = 1, group = "FragileRegrowthLifeRegenerationReverse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2796308895] = { "Gain up to maximum Fragile Regrowth when Hit" }, [1173537953] = { "Maximum 5 Fragile Regrowth" }, [223497523] = { "" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [3841984913] = { "Lose 1 Fragile Regrowth each second" }, } }, - ["MaximumESLeechAmountUnique__1_"] = { affix = "", "50% reduced Maximum Recovery per Energy Shield Leech", statOrder = { 1731 }, 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 = { 6441 }, 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 = { 9140 }, level = 1, group = "MaximumESLeechAmountDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4113811490] = { "Maximum Recovery per Energy Shield Leech is Doubled" }, } }, - ["EnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7316 }, level = 1, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3927388937] = { "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies" }, } }, - ["ArmourAppliesToLightningDamageUnique__1_"] = { affix = "", "Armour also applies to Lightning Damage taken from Hits", statOrder = { 4994 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "Armour also applies to Lightning Damage taken from Hits" }, } }, - ["LightningResistNoReductionUnique__1_"] = { affix = "", "Lightning Resistance does not affect Lightning Damage taken", statOrder = { 7467 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning Damage taken" }, } }, - ["DealNoNonLightningDamageUnique__1_"] = { affix = "", "Deal no Non-Lightning Damage", statOrder = { 2799 }, level = 1, group = "DealNoNonLightningDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2075742842] = { "Deal no Non-Lightning Damage" }, } }, - ["NearbyEnemyLightningResistanceEqualUnique__1"] = { affix = "", "Nearby Enemies have Lightning Resistance equal to yours", statOrder = { 9460 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3549734978] = { "Nearby Enemies have Lightning Resistance equal to yours" }, } }, - ["SupportedByIntensifyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 321 }, level = 1, group = "SupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [28821524] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ShockedGroundWhileMovingUnique__1_"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4316 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3002060175] = { "Drops Shocked Ground while moving, lasting 2 seconds" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_"] = { affix = "", "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 815 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2"] = { affix = "", "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 815 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["ProjectileDamageBloodStanceUnique__1"] = { affix = "", "(40-60)% increased Projectile Damage while in Blood Stance", statOrder = { 10214 }, level = 1, group = "ProjectileDamageBloodStance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2982500944] = { "(40-60)% increased Projectile Damage while in Blood Stance" }, } }, - ["LifeRegenerationBloodStanceUnique__1"] = { affix = "", "Regenerate (150-200) Life per Second while in Blood Stance", statOrder = { 10213 }, level = 1, group = "LifeRegenerationBloodStance", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [550848224] = { "Regenerate (150-200) Life per Second while in Blood Stance" }, } }, - ["AreaOfEffectSandStanceUnique__1"] = { affix = "", "(20-30)% increased Area of Effect while in Sand Stance", statOrder = { 10219 }, level = 1, group = "AreaOfEffectSandStance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1647746883] = { "(20-30)% increased Area of Effect while in Sand Stance" }, } }, - ["EvasionRatingSandStanceUnique__1"] = { affix = "", "+(700-1000) to Evasion Rating while in Sand Stance", statOrder = { 10215 }, level = 1, group = "EvasionRatingSandStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1922061483] = { "+(700-1000) to Evasion Rating while in Sand Stance" }, } }, - ["MaxRagePerEquippedSwordUnique__1____"] = { affix = "", "+10 to Maximum Rage while wielding a Sword", statOrder = { 9184 }, 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 = { 5108 }, 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 = { 7387 }, 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 = { 456 }, 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 = { 457 }, 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 = { 456 }, 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 = { 457 }, 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 = { 1623 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854777240] = { "" }, [2362975498] = { "+3 to Level of all 0 Gems" }, } }, - ["GrantsDashUnique__1_"] = { affix = "", "Grants Level 30 Dash Skill", statOrder = { 703 }, 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 = { 10698 }, 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 = { 1800 }, level = 1, group = "ArrowsIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2482927318] = { "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently" }, } }, - ["AttackSpeedIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Attack Speed if you haven't Cast Dash recently", statOrder = { 4903 }, level = 1, group = "AttackSpeedIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1003608257] = { "(20-30)% increased Attack Speed if you haven't Cast Dash recently" }, } }, - ["MovementSpeedIfUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Movement Speed if you've Cast Dash recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2659793306] = { "(20-30)% increased Movement Speed if you've Cast Dash recently" }, } }, - ["EvasionRatingIfUsedDashRecentlyUnique__1"] = { affix = "", "(100-160)% increased Evasion Rating if you've Cast Dash recently", statOrder = { 6497 }, level = 1, group = "EvasionRatingIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [237513297] = { "(100-160)% increased Evasion Rating if you've Cast Dash recently" }, } }, - ["MinionLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have", statOrder = { 4408, 4408.1 }, level = 1, group = "MinionLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [433536969] = { "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have" }, } }, - ["MinionChaosDamageDoesNotBypassESUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Minions' Energy Shield", statOrder = { 4409 }, level = 1, group = "MinionChaosDamageDoesNotBypassES", weightKey = { }, weightVal = { }, modTags = { "chaos", "minion" }, tradeHashes = { [3008104268] = { "Chaos Damage taken does not bypass Minions' Energy Shield" }, } }, - ["MinionHitsIgnoreResistanceWithESUnique__1_"] = { affix = "", "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", statOrder = { 4411 }, level = 1, group = "MinionHitsIgnoreResistanceWithES", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "minion" }, tradeHashes = { [1360359242] = { "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances" }, } }, - ["MinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have (50-100)% faster start of Energy Shield Recharge", statOrder = { 4410 }, level = 1, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [2834476618] = { "Minions have (50-100)% faster start of Energy Shield Recharge" }, } }, - ["DamageBypassEnergyShieldBlockUnique__1"] = { affix = "", "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield", statOrder = { 6027, 6027.1 }, level = 1, group = "DamageBypassEnergyShieldBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2331104018] = { "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield" }, } }, - ["NoEnergyShieldUnique__1"] = { affix = "", "Has no Energy Shield", statOrder = { 1088 }, level = 1, group = "LocalNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3109875952] = { "Has no Energy Shield" }, } }, - ["CannotBlockWithNoEnergyShieldUnique__1"] = { affix = "", "Cannot Block while you have no Energy Shield", statOrder = { 2738 }, 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 = { 5227 }, 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 = { 5223 }, 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 = { 10760, 10760.1 }, level = 1, group = "NotablesGrantManaCostAndSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [3511232600] = { "" }, [2636000900] = { "" }, } }, - ["UnleashSealGainFrequencyUnique__1"] = { affix = "", "Skills Supported by Unleash have (30-50)% increased Seal gain frequency", statOrder = { 10318 }, 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 = { 2741 }, 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 = { 5913 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["StalkingPustuleOnKillUnique__1"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 822 }, level = 50, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["BlindDoesNotAffectHitChanceUnique__1"] = { affix = "", "Unaffected by Blind", statOrder = { 10454 }, level = 1, group = "BlindDoesNotAffectHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4193902224] = { "Unaffected by Blind" }, } }, - ["MaledictionOnBlindWhileBlindedUnique__1"] = { affix = "", "Enemies Blinded by you have Malediction", statOrder = { 6370 }, level = 1, group = "MaledictionOnBlindWhileBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2621660713] = { "Enemies Blinded by you have Malediction" }, } }, - ["AttackImpaleChanceUnique__1"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__2"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__3"] = { affix = "", "(15-30)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(15-30)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["GrantsBrandDetonateUnique__1"] = { affix = "", "Grants Level 20 Brandsurge Skill", statOrder = { 697 }, level = 85, group = "GrantsBrandDetonate", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2859437049] = { "Grants Level 20 Brandsurge Skill" }, } }, - ["BrandDurationUnique__1"] = { affix = "", "Brand Skills have (50-100)% increased Duration", statOrder = { 10037 }, 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 = { 4572 }, 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 = { 10221 }, 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 = { 10568 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1139939070] = { "Warcries have infinite Power" }, } }, - ["KeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10772 }, 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 = { 4714 }, 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 = { 6403 }, level = 1, group = "WarcryTauntChaosExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2937093415] = { "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage" }, } }, - ["Curse25PercentHinderEnemyUnique__1"] = { affix = "", "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", statOrder = { 10611 }, level = 77, group = "Curse25PercentHinderEnemy", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [313419608] = { "Enemies Cursed by you are Hindered if 25% of Curse Duration expired" }, } }, - ["Curse50PercentCurseEffectUnique__1"] = { affix = "", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 10613 }, level = 1, group = "Curse50PercentCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2339022735] = { "Your Curses have 25% increased Effect if 50% of Curse Duration expired" }, } }, - ["Curse75PercentEnemyDamageTakenUnique__1__"] = { affix = "", "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired", statOrder = { 10614 }, level = 1, group = "Curse75PercentEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2057136736] = { "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired" }, } }, - ["SpellsAlwaysCritFinalRepeatUnique__1_"] = { affix = "", "Spell Skills always deal Critical Strikes on final Repeat", statOrder = { 10163 }, level = 80, group = "SpellsAlwaysCritFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3738009328] = { "Spell Skills always deal Critical Strikes on final Repeat" }, } }, - ["SpellsNeverCritExceptFinalRepeatUnique__1"] = { affix = "", "Spell Skills cannot deal Critical Strikes except on final Repeat", statOrder = { 10166 }, level = 1, group = "SpellsNeverCritExceptFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2516869940] = { "Spell Skills cannot deal Critical Strikes except on final Repeat" }, } }, - ["SpellsCriticalMultiplierFinalRepeatUnique__1"] = { affix = "", "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat", statOrder = { 10164 }, level = 1, group = "SpellsCriticalMultiplierFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4128319542] = { "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat" }, } }, - ["NonCriticalStrikesLessDamageUnique__1"] = { affix = "", "Non-critical strikes deal 80% less Damage", statOrder = { 2718 }, level = 1, group = "NonCriticalDamageMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1711683262] = { "Non-critical strikes deal 80% less Damage" }, } }, - ["MaximumRageUnique__1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9784 }, level = 85, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageUnique__2"] = { affix = "", "+5 to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+5 to Maximum Rage" }, } }, - ["MaximumRageUnique__3"] = { affix = "", "+(-5-5) to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-5-5) to Maximum Rage" }, } }, - ["MaximumRageImplicitE1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageImplicitE2"] = { affix = "", "+15 to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+15 to Maximum Rage" }, } }, - ["MaximumRageImplicitE3"] = { affix = "", "+20 to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+20 to Maximum Rage" }, } }, - ["RageOnMeleeHitE1"] = { affix = "", "Gain 3 Rage on Melee Hit", statOrder = { 6849 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 3 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE2"] = { affix = "", "Gain 4 Rage on Melee Hit", statOrder = { 6849 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 4 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE3"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6849 }, 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 = { 9451 }, 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 = { 862 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "50% increased Duration" }, } }, - ["MapGainsRandomZanaMod"] = { affix = "", "Map has an additional random Modifier from Kirac's Crafting Bench", statOrder = { 8863 }, level = 1, group = "MapGainsRandomZanaMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389457945] = { "Map has an additional random Modifier from Kirac's Crafting Bench" }, } }, - ["MapBossSurroundedByTormentedSpirits"] = { affix = "", "Map Boss is surrounded by Tormented Spirits", statOrder = { 8338 }, level = 1, group = "MapBossSurroundedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3750528071] = { "Map Boss is surrounded by Tormented Spirits" }, } }, - ["MapHarbingerPortalAdditionalFragments__"] = { affix = "", "Unique Boss drops an additional Harbinger Scroll", statOrder = { 8504 }, level = 1, group = "MapHarbingerPortalAdditionalFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1432093361] = { "Unique Boss drops an additional Harbinger Scroll" }, } }, - ["VolleyFirstPointPierceUnique__1_"] = { affix = "", "Arrows fired from the first firing points always Pierce", statOrder = { 4412 }, level = 1, group = "VolleyFirstPointPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2168987271] = { "Arrows fired from the first firing points always Pierce" }, } }, - ["VolleySecondPointForkUnique__1"] = { affix = "", "Arrows fired from the second firing points Fork", statOrder = { 4413 }, 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 = { 4414 }, 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 = { 4415 }, level = 1, group = "VolleyFourthPointChain", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [226515115] = { "Arrows fired from the fourth firing points Chain +2 times" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 1921, 7886 }, 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 = { 1921, 7514 }, 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 = { 1921, 7863 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Physical Damage", "+0.1 metres to Weapon Range per 10% Quality", statOrder = { 1921, 8135 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+0.1 metres to Weapon Range per 10% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1921, 7933 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1921, 7860 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateArmourQualityIncreasedLife"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Life per 2% Quality", statOrder = { 1920, 7997 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHashes = { [2711867632] = { "Grants +1 to Maximum Life per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIncreasedMana"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Mana per 2% Quality", statOrder = { 1920, 7999 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [3764009282] = { "Grants +1 to Maximum Mana per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityStrength"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Strength per 2% Quality", statOrder = { 1920, 8034 }, level = 1, group = "HarvestAlternateArmourQualityStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [1519019245] = { "Grants +1 to Strength per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityDexterity"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Dexterity per 2% Quality", statOrder = { 1920, 7892 }, level = 1, group = "HarvestAlternateArmourQualityDexterity", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [452753731] = { "Grants +1 to Dexterity per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIntelligence_"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Intelligence per 2% Quality", statOrder = { 1920, 7953 }, level = 1, group = "HarvestAlternateArmourQualityIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [2748574832] = { "Grants +1 to Intelligence per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityFireResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Fire Resistance per 2% Quality", statOrder = { 1920, 7937 }, level = 1, group = "HarvestAlternateArmourQualityFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "fire", "resistance" }, tradeHashes = { [2787227226] = { "Grants +1% to Fire Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityColdResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Cold Resistance per 2% Quality", statOrder = { 1920, 7882 }, level = 1, group = "HarvestAlternateArmourQualityColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1665106429] = { "Grants +1% to Cold Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityLightningResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Lightning Resistance per 2% Quality", statOrder = { 1920, 7992 }, 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 = { 4417 }, 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 = { 4418, 4418.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 = { 2919 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [279871631] = { "" }, [1646760085] = { "Unholy Might" }, } }, - ["NearbyEnemiesAreChilledUnique__1"] = { affix = "", "Nearby Enemies are Chilled", statOrder = { 7910 }, 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 = { 6669 }, 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 = { 4629 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage can Freeze" }, } }, - ["CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently", statOrder = { 5964 }, level = 85, group = "CriticalStrikeMultiplierIfGainedPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2865731079] = { "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently" }, } }, - ["PowerChargeDurationFinalUnique__1__"] = { affix = "", "90% less Power Charge Duration", statOrder = { 9697 }, level = 1, group = "PowerChargeDurationFinal", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2625134410] = { "90% less Power Charge Duration" }, } }, - ["ElementalDamageTakenUnique__1"] = { affix = "", "(40-50)% increased Elemental Damage taken", statOrder = { 3298 }, level = 1, group = "ElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2734809852] = { "(40-50)% increased Elemental Damage taken" }, } }, - ["DisplaySupportedByImmolateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Immolate", statOrder = { 314 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 15 Immolate" }, } }, - ["DisplaySupportedByUnboundAilmentsUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 15 Unbound Ailments", statOrder = { 398 }, level = 1, group = "DisplaySupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3699494172] = { "Socketed Gems are Supported by Level 15 Unbound Ailments" }, } }, - ["FireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6587 }, level = 1, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142376596] = { "40% of Fire Damage taken as Lightning Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5831 }, level = 1, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2881210047] = { "40% of Cold Damage taken as Lightning Damage" }, } }, - ["EnemyShockedConvertedToLightningUnique__1"] = { affix = "", "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning", statOrder = { 6400 }, level = 1, group = "EnemyShockedConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1070888079] = { "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning" }, } }, - ["EnemyIgnitedConvertedToFireUnique__1"] = { affix = "", "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire", statOrder = { 6388 }, level = 1, group = "EnemyIgnitedConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272032962] = { "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire" }, } }, - ["LifeGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (20-28) Life per Cursed Enemy Hit with Attacks", statOrder = { 7362 }, level = 61, group = "LifeGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (20-28) Life per Cursed Enemy Hit with Attacks" }, } }, - ["ManaGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (10-14) Mana per Cursed Enemy Hit with Attacks", statOrder = { 8182 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (10-14) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["CullingStrikeCursedEnemyUnique__1_"] = { affix = "", "You have Culling Strike against Cursed Enemies", statOrder = { 5995 }, level = 1, group = "CullingStrikeCursedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2150694455] = { "You have Culling Strike against Cursed Enemies" }, } }, - ["NearbyEnemiesAvoidProjectilesUnique__1"] = { affix = "", "Projectiles cannot collide with Enemies in Close Range", statOrder = { 9454 }, level = 1, group = "NearbyEnemiesAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826633504] = { "Projectiles cannot collide with Enemies in Close Range" }, } }, - ["ScorchingBrittleSappingConfluxUnique__1"] = { affix = "", "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", statOrder = { 6821 }, level = 85, group = "ScorchingBrittleSappingConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1518701332] = { "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal" }, } }, - ["CannotIgniteChillFreezeShockUnique__1"] = { affix = "", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 9477 }, level = 1, group = "CannotIgniteChillFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281123655] = { "Cannot Ignite, Chill, Freeze or Shock" }, } }, - ["CorpseWalk"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 792 }, level = 1, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [779168081] = { "Triggers Level 20 Corpse Walk when Equipped" }, } }, - ["GainAreaOfEffectPluspercentOnManaSpentUnique__1"] = { affix = "", "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", statOrder = { 6740 }, level = 69, group = "GainAreaOfEffectPluspercentOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3591816140] = { "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana" }, } }, - ["LifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%", statOrder = { 7425 }, level = 1, group = "LifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3845048660] = { "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%" }, } }, - ["GainEnduranceChargesWhenHitUnique__1_"] = { affix = "", "Gain an Endurance Charge when you are Hit", statOrder = { 2756 }, level = 1, group = "GainEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1514657588] = { "Gain an Endurance Charge when you are Hit" }, } }, - ["LoseLifeIfHitRecentlyUnique__1"] = { affix = "", "Lose 2% of Life per second if you have been Hit Recently", statOrder = { 7385 }, level = 1, group = "LoseLifeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2325592140] = { "Lose 2% of Life per second if you have been Hit Recently" }, } }, - ["PerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6800 }, level = 1, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3058395672] = { "You have Perfect Agony if you've dealt a Critical Strike recently" }, } }, - ["BrandDamageUnique__1"] = { affix = "", "40% increased Brand Damage", statOrder = { 10035 }, level = 1, group = "BrandDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1323465399] = { "40% increased Brand Damage" }, } }, - ["AdditionalBrandUnique__1"] = { affix = "", "You can Cast an additional Brand", statOrder = { 5058 }, level = 1, group = "AdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [708630863] = { "You can Cast an additional Brand" }, } }, - ["CriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "20% increased Critical Strike Chance per Brand", statOrder = { 5938 }, level = 1, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [2409504914] = { "20% increased Critical Strike Chance per Brand" }, } }, - ["DamageAgainstMarkedEnemiesUnique__1"] = { affix = "", "(30-50)% increased Damage with Hits and Ailments against Marked Enemy", statOrder = { 6042 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(30-50)% increased Damage with Hits and Ailments against Marked Enemy" }, } }, - ["MarkCastSpeedUnique__1"] = { affix = "", "Mark Skills have (10-15)% increased Cast Speed", statOrder = { 2221 }, level = 1, group = "MarkCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "curse" }, tradeHashes = { [4189061307] = { "Mark Skills have (10-15)% increased Cast Speed" }, } }, - ["TransferMarkOnDeathUnique__1"] = { affix = "", "Your Mark Transfers to another Enemy when Marked Enemy dies", statOrder = { 10689 }, level = 1, group = "TransferMarkOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1104120660] = { "Your Mark Transfers to another Enemy when Marked Enemy dies" }, } }, - ["DamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6095 }, level = 1, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691190311] = { "8% of Damage from Hits is taken from Marked Target's Life before you" }, } }, - ["FlaskEldritchBatteryUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Eldritch Battery during Effect", statOrder = { 856, 1075 }, level = 1, group = "FlaskEldritchBattery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, [1544417021] = { "Eldritch Battery during Effect" }, } }, - ["GrantsDeathWishUnique__1__"] = { affix = "", "Grants Level 20 Death Wish Skill", statOrder = { 704 }, level = 1, group = "GrantsDeathWish", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1965393792] = { "Grants Level 20 Death Wish Skill" }, } }, - ["EnemyTemporalChainsOnHitUnique__1"] = { affix = "", "Enemy Hits inflict Temporal Chains on you", statOrder = { 6407 }, level = 1, group = "EnemyTemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1955994922] = { "Enemy Hits inflict Temporal Chains on you" }, } }, - ["GainRageOnLosingTemporalChainsUnique__1__"] = { affix = "", "When you lose Temporal Chains you gain maximum Rage", statOrder = { 6773 }, level = 1, group = "GainRageOnLosingTemporalChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174796794] = { "When you lose Temporal Chains you gain maximum Rage" }, } }, - ["ImmuneToCursesWithRageUnique__1"] = { affix = "", "Immune to Curses while you have at least 25 Rage", statOrder = { 7226 }, level = 1, group = "ImmuneToCursesWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [534844170] = { "Immune to Curses while you have at least 25 Rage" }, } }, - ["WeaponCritChanceOverrideUnique__1__"] = { affix = "", "Critical Strike Chance is (30-40)% for Hits with this Weapon", statOrder = { 8133 }, level = 1, group = "WeaponCritChanceIs", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1672183492] = { "Critical Strike Chance is (30-40)% for Hits with this Weapon" }, } }, - ["NoIntelligenceUnique__1_"] = { affix = "", "You have no Intelligence", statOrder = { 7296 }, 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 = { 7394 }, 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 = { 4258 }, 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 = { 7143 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3363199577] = { "Non-Aura Hexes expire upon reaching 200% of base Effect" }, } }, - ["DoubleDoomEffectUnique__1"] = { affix = "", "Non-Aura Hexes gain 20% increased Effect per second", statOrder = { 9484 }, 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 = { 9246 }, 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 = { 6941 }, level = 1, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3779398176] = { "You have Lesser Massive Shrine Buff" }, } }, - ["HasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 6940 }, level = 1, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2761538350] = { "You have Lesser Brutal Shrine Buff" }, } }, - ["SocketedSkillsDoubleDamageUnique__1_"] = { affix = "", "Socketed Skills deal Double Damage", statOrder = { 568 }, level = 1, group = "SocketedSkillsDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132884933] = { "Socketed Skills deal Double Damage" }, } }, - ["TotalRecoveryLifeLeechDoubledUnique__1"] = { affix = "", "Total Recovery per second from Life Leech is Doubled", statOrder = { 10387 }, level = 55, group = "TotalRecoveryLifeLeechDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1277035917] = { "Total Recovery per second from Life Leech is Doubled" }, } }, - ["DamageLeechWith5ChargesUnique__1"] = { affix = "", "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", statOrder = { 7369 }, level = 1, group = "DamageLeechWith5Charges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1526625193] = { "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges" }, } }, - ["ReflectElementalAilmentsToSelfUnique__1"] = { affix = "", "Elemental Ailments you inflict are Reflected to you", statOrder = { 6297 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1370804479] = { "Elemental Ailments you inflict are Reflected to you" }, } }, - ["ProlifElementalAilmentsFromSelfUnique__1__"] = { affix = "", "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres", statOrder = { 6296 }, level = 1, group = "ProlifElementalAilmentsFromSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3435227689] = { "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres" }, } }, - ["ElementalDamagePerPowerChargeUnique__1"] = { affix = "", "(3-5)% increased Elemental Damage per Power charge", statOrder = { 6313 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1482070333] = { "(3-5)% increased Elemental Damage per Power charge" }, } }, - ["LosePowerChargesOnBlockUnique__1"] = { affix = "", "Lose all Power Charges when you Block", statOrder = { 8143 }, level = 1, group = "LosePowerChargesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3898799092] = { "Lose all Power Charges when you Block" }, } }, - ["GainPowerChargesNotLostRecentlyUnique__1_"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6815 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["SocketedGemQualityUnique__1"] = { affix = "", "+(30-50)% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(30-50)% to Quality of Socketed Gems" }, } }, - ["SocketedGemQualityUnique__2_"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 209 }, level = 57, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, - ["NearbyEnemiesAreBlindedPhysicalAegisUnique__1"] = { affix = "", "Nearby Enemies are Blinded while Physical Aegis is not depleted", statOrder = { 9448 }, level = 1, group = "NearbyEnemiesAreBlindedPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2504709365] = { "Nearby Enemies are Blinded while Physical Aegis is not depleted" }, } }, - ["CriticalStrikeChanceWithoutPhysicalAegisUnique__1"] = { affix = "", "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted", statOrder = { 5951 }, level = 1, group = "CriticalStrikeChanceWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2620656067] = { "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted" }, } }, - ["AttackAndCastSpeedWithoutPhysicalAegisUnique__1"] = { affix = "", "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted", statOrder = { 4829 }, level = 1, group = "AttackAndCastSpeedWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [232331266] = { "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted" }, } }, - ["SpellsGainIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds", statOrder = { 10066 }, level = 1, group = "SpellsGainIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2540626225] = { "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds" }, } }, - ["SpellsLoseIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds", statOrder = { 10067 }, level = 1, group = "SpellsLoseIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2122561670] = { "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds" }, } }, - ["CriticalStrikeChancePerIntensityUnique__1"] = { affix = "", "Spells have 10% reduced Critical Strike Chance per Intensity", statOrder = { 5941 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have 10% reduced Critical Strike Chance per Intensity" }, } }, - ["CriticalStrikeChancePerIntensityUnique__2"] = { affix = "", "Spells have (30-50)% increased Critical Strike Chance per Intensity", statOrder = { 5941 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have (30-50)% increased Critical Strike Chance per Intensity" }, } }, - ["LifeFlaskPassiveChargeGainUnique__1_"] = { affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7352 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainUnique__2"] = { affix = "", "Life Flasks gain (0-3) Charges every 3 seconds", statOrder = { 7352 }, level = 98, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainOnLowLifeUnique__1"] = { affix = "", "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds", statOrder = { 7353 }, level = 70, group = "LifeFlaskPassiveChargeGainOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4197693974] = { "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds" }, } }, - ["ManaFlaskPassiveChargeGainUnique__1"] = { affix = "", "Mana Flasks gain (0-3) Charges every 3 seconds", statOrder = { 8180 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["UtilityFlaskPassiveChargeGainUnique__1"] = { affix = "", "Utility Flasks gain (0-3) Charges every 3 seconds", statOrder = { 10512 }, level = 1, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567919918] = { "Utility Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["ElementalDamageLowestResistUnique__1"] = { affix = "", "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", statOrder = { 6318 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" }, } }, - ["ReducedAttackSpeedWhilePhasingUnique__1"] = { affix = "", "30% reduced Attack Speed while Phasing", statOrder = { 4912 }, level = 1, group = "AttackSpeedWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2752264922] = { "30% reduced Attack Speed while Phasing" }, } }, - ["PhysicalDamageAddedAsRandomWhileIgnitedUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited", statOrder = { 9635 }, level = 1, group = "PhysicalDamageAddedAsRandomWhileIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3595519743] = { "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited" }, } }, - ["ElementalPenetrationWhileChilledUnique__1___"] = { affix = "", "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled", statOrder = { 6338 }, level = 1, group = "ElementalPenetrationWhileChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1089858120] = { "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled" }, } }, - ["ElementalDamageLuckyWhileShockedUnique__1__"] = { affix = "", "Elemental Damage with Hits is Lucky while you are Shocked", statOrder = { 6301 }, level = 1, group = "ElementalDamageLuckyWhileShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [888026555] = { "Elemental Damage with Hits is Lucky while you are Shocked" }, } }, - ["WeaponEnchantmentHeistPhysicalEffect1"] = { affix = "Enchantment Physical Modifier Effect", "8% increased Explicit Physical Modifier magnitudes", statOrder = { 55 }, level = 1, group = "WeaponEnchantmentHeistPhysicalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffect1"] = { affix = "Enchantment Fire Modifier Effect", "8% increased Explicit Fire Modifier magnitudes", statOrder = { 51 }, level = 1, group = "WeaponEnchantmentHeistFireModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffect1"] = { affix = "Enchantment Lightning Modifier Effect", "8% increased Explicit Lightning Modifier magnitudes", statOrder = { 53 }, level = 1, group = "WeaponEnchantmentHeistLightningModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffect1__"] = { affix = "Enchantment Cold Modifier Effect", "8% increased Explicit Cold Modifier magnitudes", statOrder = { 47 }, level = 1, group = "WeaponEnchantmentHeistColdModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffect1__"] = { affix = "Enchantment Chaos Modifier Effect", "8% increased Explicit Chaos Modifier magnitudes", statOrder = { 46 }, level = 1, group = "WeaponEnchantmentHeistChaosModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect", "8% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 45 }, level = 1, group = "WeaponEnchantmentHeistCasterDamageModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 54 }, level = 10, group = "WeaponEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffect1_"] = { affix = "Enchantment Speed Modifier Effect", "8% increased Explicit Speed Modifier magnitudes", statOrder = { 57 }, level = 70, group = "WeaponEnchantmentHeistSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffect1_"] = { affix = "Enchantment Critical Modifier Effect", "8% increased Explicit Critical Modifier magnitudes", statOrder = { 48 }, level = 70, group = "WeaponEnchantmentHeistCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 44 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffect1"] = { affix = "Enchantment Ailment Modifier Effect", "8% increased Explicit Ailment Modifier magnitudes", statOrder = { 43 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeRequirement1"] = { affix = "Enchantment Attribute Requirement", "40% reduced Attribute Requirements", statOrder = { 1080 }, level = 1, group = "WeaponEnchantmentHeistAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistSocketsAreLinked1_"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 76 }, level = 40, group = "WeaponEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistWhiteSockets1_"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 82 }, level = 70, group = "WeaponEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSpeedEffect1"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect", "6% increased Explicit Physical Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 55, 57 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectCriticalEffect1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 48, 55 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____"] = { affix = "Enchantment Physical Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 44, 55 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAilmentEffect1"] = { affix = "Enchantment Physical Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 55 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement", "6% increased Explicit Physical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 55, 1080 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1"] = { affix = "Enchantment Physical Modifier Effect and Sockets Are Linked", "6% increased Explicit Physical Modifier magnitudes", "All Sockets Linked", statOrder = { 55, 76 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Red Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Red Sockets", statOrder = { 55, 71 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Blue Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Green Sockets", statOrder = { 55, 70 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_"] = { affix = "Enchantment Physical Modifier Effect and No Green Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 55, 69 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_"] = { affix = "Enchantment Physical Modifier Effect and White Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has 1 White Socket", statOrder = { 55, 82 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSpeedEffect1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect", "6% increased Explicit Fire Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 51, 57 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectCriticalEffect1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 48, 51 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeEffect1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 44, 51 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAilmentEffect1_"] = { affix = "Enchantment Fire Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 51 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirement1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement", "6% increased Explicit Fire Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 51, 1080 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketsAreLinked1"] = { affix = "Enchantment Fire Modifier Effect and Sockets Are Linked", "6% increased Explicit Fire Modifier magnitudes", "All Sockets Linked", statOrder = { 51, 76 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistFireEffectNoRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Red Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Red Sockets", statOrder = { 51, 71 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Blue Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Green Sockets", statOrder = { 51, 70 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoGreenSockets1_"] = { affix = "Enchantment Fire Modifier Effect and No Green Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Blue Sockets", statOrder = { 51, 69 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectWhiteSockets1"] = { affix = "Enchantment Fire Modifier Effect and White Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has 1 White Socket", statOrder = { 51, 82 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistLightningEffectSpeedEffect1_"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect", "6% increased Explicit Lightning Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 53, 57 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectCriticalEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 48, 53 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 44, 53 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAilmentEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 53 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirement1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement", "6% increased Explicit Lightning Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 53, 1080 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketsAreLinked1"] = { affix = "Enchantment Lightning Modifier Effect and Sockets Are Linked", "6% increased Explicit Lightning Modifier magnitudes", "All Sockets Linked", statOrder = { 53, 76 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Red Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Red Sockets", statOrder = { 53, 71 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoBlueSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and No Blue Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Green Sockets", statOrder = { 53, 70 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Green Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Blue Sockets", statOrder = { 53, 69 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectWhiteSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and White Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has 1 White Socket", statOrder = { 53, 82 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSpeedEffect1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 47, 57 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectCriticalEffect1_"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 47, 48 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeEffect1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 44, 47 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAilmentEffect1"] = { affix = "Enchantment Cold Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 43, 47 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirement1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement", "6% increased Explicit Cold Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 47, 1080 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketsAreLinked1"] = { affix = "Enchantment Cold Modifier Effect and Sockets Are Linked", "6% increased Explicit Cold Modifier magnitudes", "All Sockets Linked", statOrder = { 47, 76 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistColdEffectNoRedSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Red Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Red Sockets", statOrder = { 47, 71 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoBlueSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Blue Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Green Sockets", statOrder = { 47, 70 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoGreenSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Green Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Blue Sockets", statOrder = { 47, 69 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectWhiteSockets1___"] = { affix = "Enchantment Cold Modifier Effect and White Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has 1 White Socket", statOrder = { 47, 82 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistChaosEffectSpeedEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 46, 57 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectCriticalEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 46, 48 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 44, 46 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAilmentEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 43, 46 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirement1_"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement", "6% increased Explicit Chaos Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 46, 1080 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_"] = { affix = "Enchantment Chaos Modifier Effect and Sockets Are Linked", "6% increased Explicit Chaos Modifier magnitudes", "All Sockets Linked", statOrder = { 46, 76 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoRedSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and No Red Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Red Sockets", statOrder = { 46, 71 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Blue Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Green Sockets", statOrder = { 46, 70 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoGreenSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Green Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Blue Sockets", statOrder = { 46, 69 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectWhiteSockets1"] = { affix = "Enchantment Chaos Modifier Effect and White Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has 1 White Socket", statOrder = { 46, 82 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 45, 57 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 45, 48 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 44, 45 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 43, 45 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement", "6% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 45, 1080 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1"] = { affix = "Enchantment Caster Damage Modifier Effect and Sockets Are Linked", "6% increased Explicit Caster Damage Modifier magnitudes", "All Sockets Linked", statOrder = { 45, 76 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Red Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Red Sockets", statOrder = { 45, 71 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Blue Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Green Sockets", statOrder = { 45, 70 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and No Green Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Blue Sockets", statOrder = { 45, 69 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and White Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has 1 White Socket", statOrder = { 45, 82 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSpeedEffect1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 54, 57 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectCriticalEffect1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 48, 54 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeEffect1_"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 44, 54 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAilmentEffect1"] = { affix = "Enchantment Mana Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 54 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirement1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 54, 1080 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 54, 76 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 54, 71 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoBlueSockets1__"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 54, 70 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 54, 69 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectWhiteSockets1"] = { affix = "Enchantment Mana Modifier Effect and White Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 54, 82 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement", "6% increased Explicit Speed Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 57, 1080 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__"] = { affix = "Enchantment Speed Modifier Effect and Sockets Are Linked", "6% increased Explicit Speed Modifier magnitudes", "All Sockets Linked", statOrder = { 57, 76 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Red Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Red Sockets", statOrder = { 57, 71 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Blue Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Green Sockets", statOrder = { 57, 70 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Green Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Blue Sockets", statOrder = { 57, 69 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectWhiteSockets1_"] = { affix = "Enchantment Speed Modifier Effect and White Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has 1 White Socket", statOrder = { 57, 82 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement", "6% increased Explicit Critical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 48, 1080 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1"] = { affix = "Enchantment Critical Modifier Effect and Sockets Are Linked", "6% increased Explicit Critical Modifier magnitudes", "All Sockets Linked", statOrder = { 48, 76 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Red Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Red Sockets", statOrder = { 48, 71 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Blue Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Green Sockets", statOrder = { 48, 70 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Green Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 48, 69 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectWhiteSockets1_"] = { affix = "Enchantment Critical Modifier Effect and White Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has 1 White Socket", statOrder = { 48, 82 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirement1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement", "6% increased Explicit Attribute Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 44, 1080 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 44, 76 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 44, 71 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 44, 70 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 44, 69 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectWhiteSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and White Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 44, 82 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement", "6% increased Explicit Ailment Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 43, 1080 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1"] = { affix = "Enchantment Ailment Modifier Effect and Sockets Are Linked", "6% increased Explicit Ailment Modifier magnitudes", "All Sockets Linked", statOrder = { 43, 76 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoRedSockets1_"] = { affix = "Enchantment Ailment Modifier Effect and No Red Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Red Sockets", statOrder = { 43, 71 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and No Blue Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Green Sockets", statOrder = { 43, 70 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and No Green Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Blue Sockets", statOrder = { 43, 69 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectWhiteSockets1"] = { affix = "Enchantment Ailment Modifier Effect and White Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has 1 White Socket", statOrder = { 43, 82 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Physical Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 55, 57 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Physical Modifier magnitudes", statOrder = { 48, 55 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Socket Penalty", "15% increased Explicit Physical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 55, 83 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Physical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 55, 1080 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Red Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Red", statOrder = { 55, 80 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_"] = { affix = "Enchantment Physical Modifier Effect and Only Blue Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Blue", statOrder = { 55, 78 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Green Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Green", statOrder = { 55, 79 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Fire Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 51, 57 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Fire Modifier magnitudes", statOrder = { 48, 51 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Socket Penalty", "15% increased Explicit Fire Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 51, 83 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Fire Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 51, 1080 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Red Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Red", statOrder = { 51, 80 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Blue Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Blue", statOrder = { 51, 78 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyGreenSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Green Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Green", statOrder = { 51, 79 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Lightning Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 53, 57 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Lightning Modifier magnitudes", statOrder = { 48, 53 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Socket Penalty", "15% increased Explicit Lightning Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 53, 83 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Lightning Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 53, 1080 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Red Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Red", statOrder = { 53, 80 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Blue Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Blue", statOrder = { 53, 78 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Green Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Green", statOrder = { 53, 79 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 47, 57 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 47, 48 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Socket Penalty", "15% increased Explicit Cold Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 47, 83 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Cold Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 47, 1080 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyRedSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Red Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Red", statOrder = { 47, 80 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Blue Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Blue", statOrder = { 47, 78 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__"] = { affix = "Enchantment Cold Modifier Effect and Only Green Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Green", statOrder = { 47, 79 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 46, 57 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 46, 48 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Socket Penalty", "15% increased Explicit Chaos Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 46, 83 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Chaos Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 46, 1080 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyRedSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Red Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Red", statOrder = { 46, 80 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Blue Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Blue", statOrder = { 46, 78 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and Only Green Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Green", statOrder = { 46, 79 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 45, 57 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 45, 48 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__"] = { affix = "Enchantment Caster Damage Modifier Effect and Socket Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 45, 83 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 45, 1080 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Red Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Red", statOrder = { 45, 80 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Blue Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Blue", statOrder = { 45, 78 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Green Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Green", statOrder = { 45, 79 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Mana Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 54, 57 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Mana Modifier magnitudes", statOrder = { 48, 54 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketPenalty1_"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 54, 83 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 54, 1080 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 54, 80 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 54, 78 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 54, 79 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Damage Modifier Effect Penalty", "25% reduced Explicit Damage Modifier magnitudes", "12% increased Explicit Speed Modifier magnitudes", statOrder = { 49, 57 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [363924732] = { "12% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Socket Penalty", "15% increased Explicit Speed Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 57, 83 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Speed Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 57, 1080 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Red Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Red", statOrder = { 57, 80 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Blue Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Blue", statOrder = { 57, 78 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Green Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Green", statOrder = { 57, 79 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Critical Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 48, 49 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [2393315299] = { "12% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketPenalty1___"] = { affix = "Enchantment Critical Modifier Effect and Socket Penalty", "15% increased Explicit Critical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 48, 83 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Critical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 48, 1080 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Red Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Red", statOrder = { 48, 80 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Blue Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Blue", statOrder = { 48, 78 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Green Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Green", statOrder = { 48, 79 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 44, 49 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 44, 83 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 44, 1080 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 44, 80 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 44, 78 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 44, 79 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketPenalty1__"] = { affix = "Enchantment Ailment Modifier Effect and Socket Penalty", "15% increased Explicit Ailment Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 43, 83 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Ailment Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 43, 1080 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Red Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Red", statOrder = { 43, 80 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and Only Blue Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Blue", statOrder = { 43, 78 }, 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 = { 43, 79 }, 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 = { 32 }, level = 80, group = "WeaponEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["DisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 401 }, 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 = { 26, 7954 }, 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 = { 52 }, level = 1, group = "ArmourEnchantmentHeistLifeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffect1"] = { affix = "Enchantment Defence Modifier Effect", "8% increased Explicit Defence Modifier magnitudes", statOrder = { 50 }, level = 1, group = "ArmourEnchantmentHeistDefenceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 54 }, level = 1, group = "ArmourEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffect1__"] = { affix = "Enchantment Resistance Modifier Effect", "8% increased Explicit Resistance Modifier magnitudes", statOrder = { 56 }, level = 1, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 44 }, level = 1, group = "ArmourEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeRequirements1"] = { affix = "Enchantment Attribute Requirements", "40% reduced Attribute Requirements", statOrder = { 1080 }, level = 1, group = "ArmourEnchantmentHeistAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistSocketsAreLinked1"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 76 }, level = 1, group = "ArmourEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistWhiteSockets1__"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 82 }, level = 1, group = "ArmourEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectResistanceEffect1__"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Life Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 52, 56 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeEffect1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Life Modifier magnitudes", statOrder = { 44, 52 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirements1"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements", "6% increased Explicit Life Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 52, 1080 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_"] = { affix = "Enchantment Life Modifier Effect and Sockets Are Linked", "6% increased Explicit Life Modifier magnitudes", "All Sockets Linked", statOrder = { 52, 76 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoRedSockets1"] = { affix = "Enchantment Life Modifier Effect and No Red Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Red Sockets", statOrder = { 52, 71 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and No Blue Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Green Sockets", statOrder = { 52, 70 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoGreenSockets1__"] = { affix = "Enchantment Life Modifier Effect and No Green Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Blue Sockets", statOrder = { 52, 69 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectWhiteSocket1_"] = { affix = "Enchantment Life Modifier Effect and White Socket", "8% increased Explicit Life Modifier magnitudes", "Has 1 White Socket", statOrder = { 52, 82 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["ArmourEnchantmentHeistDefenceEffectResistanceEffect1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Defence Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 50, 56 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeEffect1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Defence Modifier magnitudes", statOrder = { 44, 50 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirements1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements", "6% increased Explicit Defence Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 50, 1080 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1"] = { affix = "Enchantment Defence Modifier Effect and Sockets Are Linked", "6% increased Explicit Defence Modifier magnitudes", "All Sockets Linked", statOrder = { 50, 76 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoRedSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Red Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Red Sockets", statOrder = { 50, 71 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Blue Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Green Sockets", statOrder = { 50, 70 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Green Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Blue Sockets", statOrder = { 50, 69 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectWhiteSocket1"] = { affix = "Enchantment Defence Modifier Effect and White Socket", "8% increased Explicit Defence Modifier magnitudes", "Has 1 White Socket", statOrder = { 50, 82 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectResistanceEffect1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 54, 56 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeEffect1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 44, 54 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirements1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 54, 1080 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 54, 76 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoRedSockets1_"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 54, 71 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 54, 70 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 54, 69 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectWhiteSocket1_"] = { affix = "Enchantment Mana Modifier Effect and White Socket", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 54, 82 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_"] = { affix = "Enchantment Resistance Modifier Effect and Sockets Are Linked", "6% increased Explicit Resistance Modifier magnitudes", "All Sockets Linked", statOrder = { 56, 76 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Red Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Red Sockets", statOrder = { 56, 71 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Blue Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Green Sockets", statOrder = { 56, 70 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Green Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Blue Sockets", statOrder = { 56, 69 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectWhiteSocket1"] = { affix = "Enchantment Resistance Modifier Effect and White Socket", "8% increased Explicit Resistance Modifier magnitudes", "Has 1 White Socket", statOrder = { 56, 82 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 44, 76 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 44, 71 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 44, 70 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 44, 69 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectWhiteSocket1_"] = { affix = "Enchantment Attribute Modifier Effect and White Socket", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 44, 82 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Life Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 52, 56 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "12% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketPenalty1"] = { affix = "Enchantment Life Modifier Effect and Socket Penalty", "15% increased Explicit Life Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 52, 83 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Life Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 52, 1080 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyRedSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Red Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Red", statOrder = { 52, 80 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Blue Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Blue", statOrder = { 52, 78 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Green Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Green", statOrder = { 52, 79 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Defence Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 50, 56 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3300369861] = { "12% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Socket Penalty", "15% increased Explicit Defence Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 50, 83 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Defence Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 50, 1080 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___"] = { affix = "Enchantment Defence Modifier Effect and Only Red Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Red", statOrder = { 50, 80 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Blue Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Blue", statOrder = { 50, 78 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Green Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Green", statOrder = { 50, 79 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Mana Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 54, 56 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3514984677] = { "12% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 54, 83 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 54, 1080 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 54, 80 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 54, 78 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 54, 79 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Life Modifier Effect Penalty", "50% reduced Explicit Life Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 52, 56 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__"] = { affix = "Enchantment Resistance Modifier Effect and Defence Modifier Effect Penalty", "50% reduced Explicit Defence Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 50, 56 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Socket Penalty", "15% increased Explicit Resistance Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 56, 83 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Resistance Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 56, 1080 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Red Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Red", statOrder = { 56, 80 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Blue Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Blue", statOrder = { 56, 78 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Green Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Green", statOrder = { 56, 79 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, - ["ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_"] = { affix = "Enchantment Attribute Modifier Effect and Life Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Life Modifier magnitudes", statOrder = { 44, 52 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Defence Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Defence Modifier magnitudes", statOrder = { 44, 50 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 44, 83 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 44, 1080 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 44, 80 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 44, 78 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 44, 79 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAdditionalCraftingModifier1"] = { affix = "Enchantment Additional Crafting Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 32 }, level = 80, group = "ArmourEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE1_"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10569 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE2"] = { affix = "", "Warcries Exert 2 additional Attacks", statOrder = { 10569 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 2 additional Attacks" }, } }, - ["UniqueSecretBladeGrantHiddenBlade"] = { affix = "", "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing", statOrder = { 785 }, level = 1, group = "GrantHiddenBladeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3165215973] = { "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing" }, } }, - ["LifeRecoveryRateUnique__1"] = { affix = "", "(20-25)% increased Life Regeneration rate", statOrder = { 1582 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-25)% increased Life Regeneration rate" }, } }, - ["EnergyShieldRegenerationWhileShockedUnique__1"] = { affix = "", "Regenerate 5% of Energy Shield per second while Shocked", statOrder = { 3030 }, level = 1, group = "EnergyShieldRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1700808530] = { "Regenerate 5% of Energy Shield per second while Shocked" }, } }, - ["StrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 20 Shield Shatter when you Block", statOrder = { 809 }, level = 1, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [401685616] = { "Trigger Level 20 Shield Shatter when you Block" }, } }, - ["UniqueStaffTriggerAtziriStormCall__1____"] = { affix = "", "Queen's Demand can Trigger Level 20 Storm of Judgement", statOrder = { 805 }, level = 1, group = "UniqueTriggerAtziriStormCall", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [758006884] = { "Queen's Demand can Trigger Level 20 Storm of Judgement" }, } }, - ["UniqueStaffTriggerAtziriStormFlameblast__1"] = { affix = "", "Queen's Demand can Trigger Level 20 Flames of Judgement", statOrder = { 804 }, level = 1, group = "UniqueTriggerAtziriFlameBlast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2766423342] = { "Queen's Demand can Trigger Level 20 Flames of Judgement" }, } }, - ["UniqueStaffGrantQueensDemand___"] = { affix = "", "Grants Level 20 Queen's Demand Skill", statOrder = { 755 }, level = 1, group = "UniqueStaffGrantQueensDemand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [509572644] = { "Grants Level 20 Queen's Demand Skill" }, } }, - ["UniqueWandGrantsBloodSacrament__1"] = { affix = "", "Grants Level 1 Blood Sacrament Skill", statOrder = { 647 }, level = 1, group = "UniqueGrantBloodSacrament", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [738386056] = { "Grants Level 1 Blood Sacrament Skill" }, } }, - ["ImmuneToChillUnique__1"] = { affix = "", "Immune to Chill", statOrder = { 2899 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ImmuneToChillUnique__2__"] = { affix = "", "Immune to Chill", statOrder = { 2899 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ColdDamageCannotFreeze"] = { affix = "", "Your Cold Damage cannot Freeze", statOrder = { 2890 }, level = 1, group = "ColdDamageCannotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [220932154] = { "Your Cold Damage cannot Freeze" }, } }, - ["FasterIgniteDamageUnique__1"] = { affix = "", "Ignites you inflict deal Damage (35-45)% faster", statOrder = { 2569 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (35-45)% faster" }, } }, - ["MaximumLifeLeechRateUnique__1"] = { affix = "", "40% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 80, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "40% increased Maximum total Life Recovery per second from Leech" }, } }, - ["FleshAndStoneManaReservationUnique__1_"] = { affix = "", "Flesh and Stone has no Reservation", statOrder = { 6656 }, level = 1, group = "FleshAndStoneNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2060601355] = { "Flesh and Stone has no Reservation" }, } }, - ["KeystoneHollowPalmTechniqueUnique__1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10790 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, - ["ElusiveEffectUnique__1"] = { affix = "", "(10-30)% increased Elusive Effect", statOrder = { 6354 }, level = 1, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [240857668] = { "(10-30)% increased Elusive Effect" }, } }, - ["MovementSpeedIfHitRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "10% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["GrantsWintertideBrandUnique__1"] = { affix = "", "Grants Level 25 Wintertide Brand Skill", statOrder = { 688 }, level = 1, group = "GrantsWintertideBrand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1826753218] = { "Grants Level 25 Wintertide Brand Skill" }, } }, - ["WintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has (20-30)% increased Chill Effect", statOrder = { 10617 }, level = 1, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has (20-30)% increased Chill Effect" }, } }, - ["ChanceToAvoidPoisonUnique__1"] = { affix = "", "25% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "25% chance to Avoid being Poisoned" }, } }, - ["PhysicalDamageCanFreezeUnique__1_"] = { affix = "", "Your Physical Damage can Freeze", statOrder = { 2885 }, level = 1, group = "PhysicalDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "elemental", "cold", "ailment" }, tradeHashes = { [1526975429] = { "Your Physical Damage can Freeze" }, } }, - ["ElusiveOnCriticalStrikeUnique__1"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4286 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["SupportedByArrowNovaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Arrow Nova", statOrder = { 366 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 1 Arrow Nova" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3195 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2282705842] = { "(100-150)% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["DealNoColdDamageUnique__1"] = { affix = "", "Deal no Cold Damage", statOrder = { 2797 }, level = 1, group = "DealNoColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, - ["OneHandedMeleeCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1506 }, level = 1, group = "OneHandedMeleeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, - ["PhysicalDamageTakenAsChaosUnique__1"] = { affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 1, group = "PhysicalDamageTakenAsChaosUber", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["ChanceToBeFrozenShockedIgnitedUnique__1"] = { affix = "", "+10% chance to be Frozen, Shocked and Ignited", statOrder = { 2955 }, level = 1, group = "ChanceToBeFrozenShockedIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [4245896836] = { "+10% chance to be Frozen, Shocked and Ignited" }, } }, - ["CallOfSteelAreaOfEffectUnique__1"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10228 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelAreaOfEffectUnique__2___"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10228 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelReflectDamageUnique__1"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10230 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelReflectDamageUnique__2"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10230 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelUseSpeedUnique__1"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10229 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["CallOfSteelUseSpeedUnique__2"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10229 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["SecretsOfSufferingKeystoneSceptreImplicit1"] = { affix = "", "Secrets of Suffering", statOrder = { 10810 }, 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 = { 10061 }, 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 = { 814 }, 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 = { 814, 4386 }, 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 = { 814, 4386 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "40% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 30 Flame Dash when you use a Socketed Skill" }, } }, - ["GainRandomChargeEvery6SecondsImplicitE1"] = { affix = "", "Gain an Endurance, Frenzy or Power Charge every 6 seconds", statOrder = { 6711 }, 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 = { 6711 }, 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 = { 589, 1563 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(66-80) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(100-120) to maximum Energy Shield", statOrder = { 589, 1563 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(140-165) to maximum Energy Shield", statOrder = { 589, 1563 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(140-165) to maximum Energy Shield" }, } }, - ["AttackCriticalStrikesIgnoreElementalResistancesImplicitE1"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4851 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["LocalMaximumQualityImplicitE1"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE3"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalIgnorePhysReductionImplicitE1"] = { affix = "", "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE2"] = { affix = "", "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE3"] = { affix = "", "Hits with this Weapon ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon ignore Enemy Physical Damage Reduction" }, } }, - ["LocalAugmentedQualityE1"] = { affix = "", "1% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7863, 7886 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "1% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE2"] = { affix = "", "2% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7863, 7886 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE3"] = { affix = "", "2% increased Attack Speed per 8% Quality", "2% increased Critical Strike Chance per 4% Quality", statOrder = { 7863, 7886 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "2% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["CannotUseFlaskInFifthSlotImplicitE1_"] = { affix = "", "Flasks applied to you have 30% increased Effect", "Can't use Flask in Fifth Slot", statOrder = { 2747, 5454 }, level = 30, group = "CannotUseFlaskInFifthSlotFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [589489789] = { "Can't use Flask in Fifth Slot" }, [114734841] = { "Flasks applied to you have 30% increased Effect" }, } }, - ["MaximumPowerandEnduranceChargesImplicitE1"] = { affix = "", "+1 to Maximum Power Charges and Maximum Endurance Charges", statOrder = { 9181 }, level = 1, group = "MaximumPowerandEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4138979329] = { "+1 to Maximum Power Charges and Maximum Endurance Charges" }, } }, - ["SummonTauntingContraptionOnFlaskUseImplicitE1"] = { affix = "", "Trigger Level 20 Summon Taunting Contraption when you use a Flask", statOrder = { 825 }, level = 70, group = "SummonTauntingContraptionOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1774370437] = { "Trigger Level 20 Summon Taunting Contraption when you use a Flask" }, } }, - ["MinionChanceToMaimOnHitUnique__1_"] = { affix = "", "Minions have 5% chance to Maim Enemies on Hit with Attacks", statOrder = { 9319 }, level = 1, group = "MinionChanceToMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2138548436] = { "Minions have 5% chance to Maim Enemies on Hit with Attacks" }, } }, - ["PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1"] = { affix = "", "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", statOrder = { 6798 }, level = 1, group = "PhysicalDamagePercentAddedAsChaosPerElderItem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1423002070] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped" }, } }, - ["AddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength", statOrder = { 9232 }, level = 1, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [117885424] = { "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength" }, } }, - ["CannotDealNonChaosDamageUnique__1_"] = { affix = "", "Cannot deal non-Chaos Damage", statOrder = { 6149 }, level = 1, group = "CannotDealNonChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3180152291] = { "Cannot deal non-Chaos Damage" }, } }, - ["TravelSkillMoreDamageUnique__1"] = { affix = "", "Socketed Travel Skills deal 80% more Damage", statOrder = { 574 }, level = 1, group = "TravelSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1020412108] = { "Socketed Travel Skills deal 80% more Damage" }, } }, - ["DamageTakenWhilePhasingUnique__1"] = { affix = "", "10% increased Damage taken while Phasing", statOrder = { 6127 }, level = 1, group = "DamageTakenWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [146268648] = { "10% increased Damage taken while Phasing" }, } }, - ["ProjectilesChainWhilePhasingUnique__1_"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9516 }, level = 1, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383509486] = { "Projectiles Chain +1 times while you have Phasing" }, } }, - ["MinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9329 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["ChanceToIgniteWithChaosSkillsUnique__1"] = { affix = "", "Chaos Skills have 20% chance to Ignite", statOrder = { 5760 }, level = 1, group = "ChanceToIgniteWithChaosSkills", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [3573128085] = { "Chaos Skills have 20% chance to Ignite" }, } }, - ["UniqueVolkuursGuidanceIgniteDurationFinal"] = { affix = "", "50% less Ignite Duration", statOrder = { 10506 }, level = 1, group = "UniqueVolkuursGuidanceIgniteDurationFinal", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2614885550] = { "50% less Ignite Duration" }, } }, - ["ManaRegenerationAuraUnique__1"] = { affix = "", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 7904 }, level = 1, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, [2936084533] = { "You and nearby Allies have 30% increased Mana Regeneration Rate" }, } }, - ["AvoidPhysicalDamageWhilePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing", statOrder = { 4954 }, level = 1, group = "AvoidPhysicalDamageWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2490633856] = { "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing" }, } }, - ["GrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5708 }, level = 1, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1243641369] = { "10% chance to grant a Frenzy Charge to nearby Allies on Kill" }, } }, - ["GrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5707 }, level = 1, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3174788165] = { "5% chance to grant an Endurance Charge to nearby Allies on Hit" }, } }, - ["ChanceToImpaleWithSpellsUnique__1"] = { affix = "", "20% chance to Impale on Spell Hit", statOrder = { 10191 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [3094222195] = { "20% chance to Impale on Spell Hit" }, } }, - ["ImpaleEffectUnique__1"] = { affix = "", "20% increased Impale Effect", statOrder = { 7247 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "20% increased Impale Effect" }, } }, - ["ImpaleEffectUnique__2"] = { affix = "", "5% increased Impale Effect", statOrder = { 7247 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "5% increased Impale Effect" }, } }, - ["AttackDamagePer450ArmourUnique__1__"] = { affix = "", "1% increased Attack Damage per 450 Armour", statOrder = { 4862 }, level = 1, group = "AttackDamagePer450Armour", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [192842973] = { "1% increased Attack Damage per 450 Armour" }, } }, - ["ZombiesTakeFireDamagePerSecondUnique__1_"] = { affix = "", "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 9819 }, level = 1, group = "ZombiesTakeFireDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3733496041] = { "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["ZombiesHaveAvatarOfFireUnique__1"] = { affix = "", "Raised Zombies have Avatar of Fire", statOrder = { 9820 }, level = 1, group = "ZombiesHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1474437010] = { "Raised Zombies have Avatar of Fire" }, } }, - ["ZombiesCoverInAshOnHitUnique__1"] = { affix = "", "Raised Zombies Cover Enemies in Ash on Hit", statOrder = { 9818 }, level = 1, group = "ZombiesCoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [613525808] = { "Raised Zombies Cover Enemies in Ash on Hit" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUnique__1"] = { affix = "", "1% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1696 }, level = 1, group = "LifeLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [593279674] = { "1% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["EnduranceChargeIfAttackFreezesUnique__1"] = { affix = "", "Gain an Endurance Charge if an Attack Freezes an Enemy", statOrder = { 6750 }, level = 1, group = "EnduranceChargeIfAttackFreezes", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [407576170] = { "Gain an Endurance Charge if an Attack Freezes an Enemy" }, } }, - ["PowerChargeOnHittingFrozenEnemyUnique__1"] = { affix = "", "50% chance to gain a Power Charge when you Hit a Frozen Enemy", statOrder = { 6810 }, level = 1, group = "PowerChargeOnHittingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3973790753] = { "50% chance to gain a Power Charge when you Hit a Frozen Enemy" }, } }, - ["TakeColdDamageOnMaximumPowerChargesUnique__1____"] = { affix = "", "Take 500 Cold Damage on reaching Maximum Power Charges", statOrder = { 9969 }, level = 1, group = "TakeColdDamageOnMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3664778308] = { "Take 500 Cold Damage on reaching Maximum Power Charges" }, } }, - ["MovementVelocityWhileChilledUnique__1_"] = { affix = "", "(10-20)% increased Movement Speed while Chilled", statOrder = { 9444 }, level = 1, group = "MovementVelocityWhileChilled", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2203777380] = { "(10-20)% increased Movement Speed while Chilled" }, } }, - ["AttackSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Attack Speed while Chilled", statOrder = { 4910 }, level = 1, group = "AttackSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3935294261] = { "(10-20)% increased Attack Speed while Chilled" }, } }, - ["CastSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Cast Speed while Chilled", statOrder = { 5477 }, 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 = { 6580 }, 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 = { 6146 }, 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 = { 813 }, 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 = { 813 }, 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 = { 813 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["MaxPrefixMaxSuffixImplicitE1__"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Suffix Modifier magnitudes", statOrder = { 20, 21, 26, 8035 }, 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 = { 20, 21, 26, 8008 }, 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 = { 20, 21, 26 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "+3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE4"] = { affix = "", "+1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Prefix Modifier magnitudes", statOrder = { 20, 21, 26, 8008 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "50% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE5"] = { affix = "", "-3 Prefix Modifiers allowed", "+3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 20, 21, 26 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE6"] = { affix = "", "-2 Prefix Modifiers allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Suffix Modifier magnitudes", statOrder = { 20, 21, 26, 8035 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "50% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["ReflectedDurationRingImplicitK1"] = { affix = "", "Left ring slot: 15% reduced Skill Effect Duration", "Right ring slot: 15% increased Skill Effect Duration", statOrder = { 2667, 2674 }, level = 30, group = "ReflectedDurationRingImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3320868777] = { "Left ring slot: 15% reduced Skill Effect Duration" }, [2239667237] = { "Right ring slot: 15% increased Skill Effect Duration" }, } }, - ["ReflectedFireColdDamageTakenConversionImplicitK5a"] = { affix = "", "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage", "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage", statOrder = { 2660, 2671 }, level = 30, group = "ReflectedFireColdDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1323927995] = { "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage" }, [2478238773] = { "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedFireLightningDamageTakenConversionImplicitK5b"] = { affix = "", "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage", "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 2662, 2672 }, level = 30, group = "ReflectedFireLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [17730902] = { "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage" }, [1905512385] = { "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["ReflectedColdLightningDamageTakenConversionImplicitK5c"] = { affix = "", "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage", "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 2663, 2669 }, level = 30, group = "ReflectedColdLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [744858137] = { "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage" }, [450178102] = { "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedCurseEffectOnSelfImplicitK2"] = { affix = "", "Left ring slot: 30% reduced Effect of Curses on you", "Right ring slot: 30% increased Effect of Curses on you", statOrder = { 2661, 2670 }, level = 30, group = "ReflectedCurseEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4279053153] = { "Right ring slot: 30% increased Effect of Curses on you" }, [496053892] = { "Left ring slot: 30% reduced Effect of Curses on you" }, } }, - ["ReflectedMinionDamageTakenImplicitK3"] = { affix = "", "Left ring slot: Minions take 15% reduced Damage", "Right ring slot: Minions take 15% increased Damage", statOrder = { 2666, 2673 }, level = 30, group = "ReflectedMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1069618951] = { "Right ring slot: Minions take 15% increased Damage" }, [1916904011] = { "Left ring slot: Minions take 15% reduced Damage" }, } }, - ["ReflectedAilmentDurationOnSelfImplicitK4"] = { affix = "", "Left ring slot: 30% reduced Duration of Ailments on You", "Right ring slot: 30% increased Duration of Ailments on You", statOrder = { 2659, 2668 }, level = 30, group = "ReflectedAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [221309863] = { "Left ring slot: 30% reduced Duration of Ailments on You" }, [2457848738] = { "Right ring slot: 30% increased Duration of Ailments on You" }, } }, - ["CurseEffectElementalAilmentDurationOnSelfR1"] = { affix = "", "50% increased Elemental Ailment Duration on you", "50% reduced Effect of Curses on you", statOrder = { 1872, 2175 }, level = 30, group = "CurseEffectElementalAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE1"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Explicit Modifier magnitudes", statOrder = { 20, 21, 26, 62 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "25% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE2"] = { affix = "", "-2 Prefix Modifiers allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 20, 21, 26, 62 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE3"] = { affix = "", "-1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 20, 21, 26, 62 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["LocalAllDamageCanPoisonImplicitE1_"] = { affix = "", "All Damage from Hits with This Weapon can Poison", statOrder = { 2475 }, level = 1, group = "LocalAllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042990] = { "All Damage from Hits with This Weapon can Poison" }, } }, - ["ChanceToInflictScorchOnEnemyOnBlockImplicitE1"] = { affix = "", "Scorch Enemies when you Block their Damage", statOrder = { 5718 }, level = 1, group = "ChanceToInflictScorchOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [779391868] = { "Scorch Enemies when you Block their Damage" }, } }, - ["ChanceToInflictBrittleOnEnemyOnBlockImplicitE1"] = { affix = "", "Inflict Brittle on Enemies when you Block their Damage", statOrder = { 5713 }, level = 1, group = "ChanceToInflictBrittleOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1749278976] = { "Inflict Brittle on Enemies when you Block their Damage" }, } }, - ["ChanceToInflictSapOnEnemyOnBlockImplicitE1"] = { affix = "", "Sap Enemies when you Block their Damage", statOrder = { 5717 }, level = 1, group = "ChanceToInflictSapOnEnemyOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2113677718] = { "Sap Enemies when you Block their Damage" }, } }, - ["ItemNecroticFootprintsUnique__1s"] = { affix = "", "Necrotic Footprints", statOrder = { 9476 }, level = 1, group = "ItemNecroticFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [214242256] = { "Necrotic Footprints" }, } }, - ["ChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5747 }, level = 1, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [779829642] = { "+30% to Chaos Resistance while stationary" }, } }, - ["PowerChargeOnHitWhilePoisonedUnique__1"] = { affix = "", "Gain a Power Charge on Hit while Poisoned", statOrder = { 4536 }, level = 1, group = "PowerChargeOnHitWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [800598487] = { "Gain a Power Charge on Hit while Poisoned" }, } }, - ["ChanceToBePoisonedBySpellsUnique__1_"] = { affix = "", "50% chance for Spell Hits against you to inflict Poison", statOrder = { 10159 }, level = 1, group = "ChanceToBePoisonedBySpells", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2043747322] = { "50% chance for Spell Hits against you to inflict Poison" }, } }, - ["SpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9613, 9801 }, level = 1, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, - ["MovementVelocityPerPowerChargeUnique__1__"] = { affix = "", "5% increased Movement Speed per Power Charge", statOrder = { 9427 }, level = 1, group = "MovementVelocityPerPowerChargeCopy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3774108776] = { "5% increased Movement Speed per Power Charge" }, } }, - ["LifeRegenerationPerPowerChargeUnique__1__"] = { affix = "", "Regenerate 0.5% of Life per second per Power Charge", statOrder = { 7426 }, level = 1, group = "LifeRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.5% of Life per second per Power Charge" }, } }, - ["LocalFlaskAttackAndCastSpeedWhileHealingUnique__1"] = { affix = "", "(5-15)% increased Attack Speed during Effect", "(5-15)% increased Cast Speed during Effect", statOrder = { 949, 950 }, level = 1, group = "LocalFlaskAttackAndCastSpeedWhileHealing", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3256116097] = { "(5-15)% increased Cast Speed during Effect" }, [968369591] = { "(5-15)% increased Attack Speed during Effect" }, } }, - ["IncreasedElementalResistancesUnique__1"] = { affix = "", "(18-22)% increased Elemental Resistances", statOrder = { 6317 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(18-22)% increased Elemental Resistances" }, } }, - ["IncreasedElementalResistancesUnique__2_"] = { affix = "", "(60-70)% reduced Elemental Resistances", statOrder = { 6317 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(60-70)% reduced Elemental Resistances" }, } }, - ["DefencesAreZeroUnique__1_"] = { affix = "", "Defences are Zero", statOrder = { 6159 }, level = 1, group = "DefencesAreZero", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4271994824] = { "Defences are Zero" }, } }, - ["ChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10725 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, - ["ElementalDamageDuringFlaskEffectUnique__1"] = { affix = "", "30% increased Elemental Damage during any Flask Effect", statOrder = { 4230 }, level = 1, group = "ElementalDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3150967823] = { "30% increased Elemental Damage during any Flask Effect" }, } }, - ["SupportedByCastOnDamageTakenUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 12 Cast when Damage Taken", statOrder = { 244 }, level = 1, group = "SupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 12 Cast when Damage Taken" }, } }, - ["ShieldArmourIncreaseUnique__1"] = { affix = "", "50% increased Defences from Equipped Shield", statOrder = { 1999 }, level = 1, group = "ShieldArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1215155013] = { "50% increased Defences from Equipped Shield" }, } }, - ["AddedFireDamageIfBlockedRecentlyUnique__1"] = { affix = "", "Adds 45 to 75 Fire Damage if you've Blocked Recently", statOrder = { 4280 }, level = 1, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 45 to 75 Fire Damage if you've Blocked Recently" }, } }, - ["AddedFireDamagePer100LowestOfLifeOrManaUnique__1"] = { affix = "", "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", statOrder = { 9240 }, level = 1, group = "AddedFireDamagePer100LowestOfLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [753801406] = { "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower" }, } }, - ["TauntedEnemiesTakeIncreasedDamage_"] = { affix = "", "Enemies Taunted by you take 10% increased Damage", statOrder = { 4285 }, level = 1, group = "TauntedEnemiesTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1282219780] = { "Enemies Taunted by you take 10% increased Damage" }, } }, - ["ChaosDamageCanChill"] = { affix = "", "Your Chaos Damage can Chill", statOrder = { 2873 }, level = 1, group = "ChaosDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [3686066640] = { "Your Chaos Damage can Chill" }, } }, - ["ChaosDamageCanFreezeUnique_1"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2874 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MainHandTriggerSocketedSpellOnFreezingHitUnique_1"] = { affix = "", "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown", statOrder = { 834, 834.1 }, level = 83, group = "MainHandTriggerSocketedSpellOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [537034483] = { "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown" }, } }, - ["ElementalDamageIfCritRecently"] = { affix = "", "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 6307 }, level = 1, group = "ElementalDamageIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2379781920] = { "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, } }, - ["SupportedByMultiTotemUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Multiple Totems", statOrder = { 345 }, level = 1, group = "SupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 1 Multiple Totems" }, } }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 4201 }, 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 = { 5043 }, 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 = { 2168 }, 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 = { 109, 358 }, level = 1, group = "HungryLoopSupportedByPinpoint", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1609369521] = { "Socketed Gems are Supported by Level 20 Pinpoint" }, [1782861052] = { "" }, } }, - ["SpellBlockIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", statOrder = { 10131 }, 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 = { 7935 }, 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 = { 5818 }, level = 1, group = "ColdDamagePerMissingColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2859664487] = { "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%" }, } }, - ["FireDamagePerMissingFireResistanceUnique__1"] = { affix = "", "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", statOrder = { 6571 }, level = 1, group = "FireDamagePerMissingFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1060236362] = { "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%" }, } }, - ["ElementalDamagePerMissingResistanceUnique_1"] = { affix = "", "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%", statOrder = { 6300, 6300.1 }, level = 1, group = "ElementalDamagePerMissingResistance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [64913248] = { "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%" }, } }, - ["ReplicaNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 63 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["HyrrisTruthHatredManaReservationFinalUnique__1"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6946 }, level = 1, group = "HyrrisTruthHatredManaReservationFinal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["HatredManaReservationEfficiencyUnique__1__"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6947 }, level = 1, group = "HatredReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["GrantsHatredUnique__1__"] = { affix = "", "Grants Level 22 Hatred Skill", statOrder = { 654 }, level = 81, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, - ["WingsOfEntropyMainHandAttackSpeedFinalUnique__1_"] = { affix = "", "(50-100)% more Main Hand attack speed", statOrder = { 8161 }, level = 1, group = "WingsOfEntropyMainHandAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56401364] = { "(50-100)% more Main Hand attack speed" }, } }, - ["OffHandBaseCriticalStrikeChanceUnique__1"] = { affix = "", "+(10-20)% to Off Hand Critical Strike Chance", statOrder = { 4573 }, level = 1, group = "OffHandBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1757389331] = { "+(10-20)% to Off Hand Critical Strike Chance" }, } }, - ["FlammabilityOnBlockChanceUnique__1"] = { affix = "", "Curse Enemies with Flammability on Block", statOrder = { 2991 }, level = 1, group = "FlammabilityOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2776399916] = { "Curse Enemies with Flammability on Block" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4886 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks can Fork 1 additional time", statOrder = { 4887 }, 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 = { 2984 }, 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 = { 10759 }, 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 = { 109, 397 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, [1782861052] = { "" }, } }, - ["LoseLifePercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Life when you deal a Critical Strike", statOrder = { 8146 }, 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 = { 8144 }, 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 = { 6263 }, 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 = { 7419 }, 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 = { 4774 }, 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 = { 6416 }, level = 62, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, [42490373] = { "" }, } }, - ["EnemiesIgniteWitherNeverExpiresUnique__1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6417 }, 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 = { 732 }, 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 = { 7869 }, level = 1, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["SacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6820 }, level = 1, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2287328323] = { "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second" }, } }, - ["ArmourPenetrationSacrificialZealUnique__1"] = { affix = "", "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", statOrder = { 7176 }, level = 1, group = "ArmourPenetrationSacrificialZeal", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4243208518] = { "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal" }, } }, - ["RightRingMagicHexproofUnique__1"] = { affix = "", "You are Hexproof if you have a Magic Ring in right slot", statOrder = { 7144 }, level = 1, group = "RightRingMagicHexproof", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [165884462] = { "You are Hexproof if you have a Magic Ring in right slot" }, } }, - ["LeftRingMagicNoCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", statOrder = { 9980 }, level = 1, group = "LeftRingMagicNoCritDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [611839381] = { "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot" }, } }, - ["AnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6423 }, level = 1, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2510276385] = { "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR1"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 559, 1624 }, level = 15, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR2"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 559, 1624 }, level = 45, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR3___"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 559, 1624 }, level = 75, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR1"] = { affix = "", "-1 to Level of Socketed Support Gems", "+1 to Level of Socketed Skill Gems", statOrder = { 194, 195 }, level = 15, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [4154259475] = { "-1 to Level of Socketed Support Gems" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR2"] = { affix = "", "-2 to Level of Socketed Support Gems", "+2 to Level of Socketed Skill Gems", statOrder = { 194, 195 }, level = 45, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+2 to Level of Socketed Skill Gems" }, [4154259475] = { "-2 to Level of Socketed Support Gems" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4"] = { affix = "", "+(3-4)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6"] = { affix = "", "+(5-6)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2463, 5001 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR1"] = { affix = "", "30% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1907, 3277 }, level = 20, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "30% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR2"] = { affix = "", "40% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1907, 3277 }, level = 50, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR3"] = { affix = "", "50% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1907, 3277 }, level = 80, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR1"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1803, 9404 }, level = 20, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR2_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1803, 9404 }, level = 50, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR3_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1803, 9404 }, level = 80, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4878, 5262 }, level = 20, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4878, 5262 }, level = 50, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4878, 5262 }, level = 80, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["MainHandOffHandDamage1_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1287, 1288 }, level = 10, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage2"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1287, 1288 }, level = 40, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage3_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1287, 1288 }, level = 70, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (10-15)% increased Skill Effect Duration", statOrder = { 3466, 10417 }, level = 10, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (10-15)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3466, 10417 }, level = 40, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (15-20)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (20-25)% increased Skill Effect Duration", statOrder = { 3466, 10417 }, level = 70, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (20-25)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["GainManaOnManaPaidManaCost1"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1585, 5704 }, level = 10, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost2"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1585, 5704 }, level = 40, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost3____"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1585, 5704 }, level = 70, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["ExertedDamageWarcryCooldown1"] = { affix = "", "Exerted Attacks deal (25-30)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6361, 10567 }, level = 10, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-30)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown2"] = { affix = "", "Exerted Attacks deal (30-40)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6361, 10567 }, level = 40, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (30-40)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown3"] = { affix = "", "Exerted Attacks deal (40-50)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6361, 10567 }, level = 70, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-50)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["FortifyEffectCrushed1"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7924, 9121 }, level = 15, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed2_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7924, 9121 }, level = 45, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed3_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7924, 9121 }, level = 75, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["MaxChaosResistanceCrushedImplicitR1"] = { affix = "", "+2% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1645, 7924 }, level = 15, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR2"] = { affix = "", "+3% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1645, 7924 }, level = 45, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR3"] = { affix = "", "+4% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1645, 7924 }, level = 75, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["AddedColdDamageColdPenetration1"] = { affix = "", "Adds (3-4) to (5-6) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1373, 2988 }, level = 15, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (3-4) to (5-6) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration2"] = { affix = "", "Adds (15-20) to (28-35) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1373, 2988 }, level = 45, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (15-20) to (28-35) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration3"] = { affix = "", "Adds (75-85) to (115-128) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1373, 2988 }, level = 75, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (75-85) to (115-128) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["GrantsUnhingeUnique__1"] = { affix = "", "Grants Level 20 Unhinge Skill", statOrder = { 728 }, level = 1, group = "GrantsUnhingeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3239991868] = { "Grants Level 20 Unhinge Skill" }, } }, - ["PhysicalChaosDamageTakenNotUnhingedUnique__1_"] = { affix = "", "(30-40)% less Physical and Chaos Damage Taken while Sane", statOrder = { 9620 }, level = 1, group = "PhysicalChaosDamageTakenNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [388639924] = { "(30-40)% less Physical and Chaos Damage Taken while Sane" }, } }, - ["RegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 10% Life over one second when Hit while Sane", statOrder = { 9893 }, level = 1, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2504632495] = { "Regenerate 10% Life over one second when Hit while Sane" }, } }, - ["CriticalStrikeChanceFinalUnhingedUnique__1"] = { affix = "", "(40-60)% more Critical Strike Chance while Insane", statOrder = { 5928 }, level = 1, group = "CriticalStrikeChanceFinalUnhinged", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2692289207] = { "(40-60)% more Critical Strike Chance while Insane" }, } }, - ["EnemiesExplodeOnKillUnhingedUnique__1_"] = { affix = "", "Enemies Killed by your Hits are destroyed while Insane", statOrder = { 6381 }, level = 1, group = "EnemiesExplodeOnKillUnhinged", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797538318] = { "Enemies Killed by your Hits are destroyed while Insane" }, } }, - ["CurseAurasAffectYouUnique__1"] = { affix = "", "Curse Auras from Socketed Skills also affect you", statOrder = { 556 }, level = 70, group = "CurseAurasAffectYou", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "curse" }, tradeHashes = { [2965611853] = { "Curse Auras from Socketed Skills also affect you" }, } }, - ["HitAndAilmentDamageCursedEnemiesUnique__1"] = { affix = "", "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7156 }, level = 1, group = "HitAndAilmentDamageCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, - ["ScorchedGroundWhileMovingUnique__1"] = { affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 4315 }, level = 1, group = "ScorchedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1558131185] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, - ["NearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3404 }, level = 1, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3733114005] = { "Nearby Enemies are Scorched" }, } }, - ["ScorchEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Scorch", statOrder = { 9961 }, level = 1, group = "ScorchEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [344570534] = { "(30-50)% increased Effect of Scorch" }, } }, - ["ScorchedEnemiesDegenExplodeUnique__1_"] = { affix = "", "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", statOrder = { 9963, 9963.1 }, level = 87, group = "ScorchedEnemiesDegenExplode", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3717165313] = { "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second" }, } }, - ["AttackSpeedFrenzyChargeNotGainedUnique__1"] = { affix = "", "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently", statOrder = { 4904 }, level = 1, group = "AttackSpeedFrenzyChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [749465463] = { "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently" }, } }, - ["CriticalStrikeChancePowerChargeNotGainedUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently", statOrder = { 5934 }, level = 1, group = "CriticalStrikeChancePowerChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [151106430] = { "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently" }, } }, - ["ExtendFrenzyPowerChargeDurationCullUnique__1"] = { affix = "", "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike", statOrder = { 6676 }, level = 1, group = "ExtendFrenzyPowerChargeDurationCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4244234128] = { "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike" }, } }, - ["LifeGainOnCullUnique__1"] = { affix = "", "Gain (120-150) Life on Culling Strike", statOrder = { 7363 }, level = 1, group = "LifeGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2381677442] = { "Gain (120-150) Life on Culling Strike" }, } }, - ["ManaGainOnCullUnique__1_"] = { affix = "", "Gain (10-20) Mana on Culling Strike", statOrder = { 8183 }, level = 1, group = "ManaGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2845511711] = { "Gain (10-20) Mana on Culling Strike" }, } }, - ["GainBrutalChargesInsteadOfEnduranceUnique__1"] = { affix = "", "Gain Brutal Charges instead of Endurance Charges", statOrder = { 6743 }, level = 85, group = "GainBrutalChargesInsteadOfEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306836071] = { "Gain Brutal Charges instead of Endurance Charges" }, } }, - ["GainAfflictionChargesInsteadOfFrenzyUnique__1"] = { affix = "", "Gain Affliction Charges instead of Frenzy Charges", statOrder = { 6724 }, level = 85, group = "GainAfflictionChargesInsteadOfFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602173343] = { "Gain Affliction Charges instead of Frenzy Charges" }, } }, - ["GainAbsorptionChargesInsteadOfPowerUnique__1"] = { affix = "", "Gain Absorption Charges instead of Power Charges", statOrder = { 6714 }, level = 85, group = "GainAbsorptionChargesInsteadOfPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1379726309] = { "Gain Absorption Charges instead of Power Charges" }, } }, - ["MaximumBrutalChargesEqualsEnduranceUnique__1__"] = { affix = "", "Maximum Brutal Charges is equal to Maximum Endurance Charges", statOrder = { 1812 }, level = 1, group = "MaximumBrutalChargesEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3710150470] = { "Maximum Brutal Charges is equal to Maximum Endurance Charges" }, } }, - ["MaximumAfflictionChargesEqualsFrenzyUnique__1"] = { affix = "", "Maximum Affliction Charges is equal to Maximum Frenzy Charges", statOrder = { 1817 }, level = 1, group = "MaximumAfflictionChargesEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2817027713] = { "Maximum Affliction Charges is equal to Maximum Frenzy Charges" }, } }, - ["MaximumAbsorptionChargesEqualsPowerUnique__1_"] = { affix = "", "Maximum Absorption Charges is equal to Maximum Power Charges", statOrder = { 1822 }, level = 1, group = "MaximumAbsorptionChargesEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2494027711] = { "Maximum Absorption Charges is equal to Maximum Power Charges" }, } }, - ["MinimumBrutalChargeModifiersEqualsEnduranceUnique__1"] = { affix = "", "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", statOrder = { 1811 }, level = 1, group = "MinimumBrutalChargeModifiersEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966482502] = { "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges" }, } }, - ["MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1"] = { affix = "", "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", statOrder = { 1816 }, level = 1, group = "MinimumAfflictionChargeModifiersEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424305790] = { "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges" }, } }, - ["MinimumAbsorptionChargeModifiersEqualsPowerUnique__1"] = { affix = "", "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", statOrder = { 1821 }, level = 1, group = "MinimumAbsorptionChargeModifiersEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1752582590] = { "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges" }, } }, - ["MinionsCrazyOnCritUnique__1__"] = { affix = "", "Minions can hear the whispers for 5 seconds after they deal a Critical Strike", statOrder = { 9358 }, level = 1, group = "MinionsCrazyOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [2735021664] = { "Minions can hear the whispers for 5 seconds after they deal a Critical Strike" }, } }, - ["MinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9293 }, level = 1, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [446070669] = { "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have" }, } }, - ["PhysicalDamageTakenAsLightningDescentTwoHandSword1"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 1603 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["BattlemageKeystoneUnique__1"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__2_"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__3"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__4"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__6"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["ChainOffTerrainChancePerRangedAbyssJewelUnique__1__"] = { affix = "", "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%", statOrder = { 9726, 9726.1 }, level = 1, group = "ChainOffTerrainChancePerRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1485085047] = { "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%" }, } }, - ["MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1"] = { affix = "", "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%", statOrder = { 8163, 8163.1 }, level = 1, group = "MainHandCriticalStrikeChancePerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3454830051] = { "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%" }, } }, - ["OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__"] = { affix = "", "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%", statOrder = { 9549, 9549.1 }, level = 1, group = "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3699529133] = { "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%" }, } }, - ["MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1"] = { affix = "", "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%", statOrder = { 9298, 9298.1 }, level = 1, group = "MinionDamageOverTimeMultiplierPerMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [613055432] = { "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%" }, } }, - ["ArcaneSurgeEffectPerCasterAbyssJewelUnique__1"] = { affix = "", "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%", statOrder = { 3292, 3292.1 }, level = 1, group = "ArcaneSurgeEffectPerCasterAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1012072406] = { "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%" }, } }, - ["MapAdditionalBlightEnchantment"] = { affix = "", "Area contains a Blight Encounter", statOrder = { 591 }, level = 1, group = "MapAdditionalBlightEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459443694] = { "Area contains a Blight Encounter" }, } }, - ["MapAdditionalBreachEnchantment1"] = { affix = "", "Area can contain Breaches", statOrder = { 2618 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment2"] = { affix = "", "Area can contain Breaches", statOrder = { 2618 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment3__"] = { affix = "", "Area can contain Breaches", statOrder = { 2618 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["MapAdditionalBreachEnchantment5"] = { affix = "", "Area can contain Breaches", statOrder = { 2618 }, level = 1, group = "MapAdditionalBreachEnchantment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3629113735] = { "" }, [1385280440] = { "" }, [2180286756] = { "Area can contain Breaches" }, } }, - ["GrantsCallOfSteelSkillUnique__1_"] = { affix = "", "Grants Call of Steel", statOrder = { 699 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, - ["GrantsCallOfSteelSkillUnique__2"] = { affix = "", "Grants Call of Steel", statOrder = { 699 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, - ["LocalVeiledModEffectUnique__1"] = { affix = "", "(60-90)% increased Unveiled Modifier magnitudes", statOrder = { 61 }, level = 85, group = "LocalVeiledModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-90)% increased Unveiled Modifier magnitudes" }, } }, - ["LocalFreezeAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage", statOrder = { 7946 }, level = 1, group = "LocalFreezeAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2071306253] = { "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalShockAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage", statOrder = { 7947 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalWeaponMoreIgniteDamageUnique__1"] = { affix = "", "Ignites inflicted with this Weapon deal (50-75)% more Damage", statOrder = { 7948 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal (50-75)% more Damage" }, } }, - ["ChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "(4-6)% chance to throw up to 4 additional Traps", statOrder = { 5729 }, level = 1, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3132227798] = { "(4-6)% chance to throw up to 4 additional Traps" }, } }, - ["GainMaximumPowerChargesOnVaalSkillUseUnique__1"] = { affix = "", "Gain up to maximum Power Charges when you use a Vaal Skill", statOrder = { 6781 }, level = 1, group = "GainMaximumPowerChargesOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "vaal" }, tradeHashes = { [3558528738] = { "Gain up to maximum Power Charges when you use a Vaal Skill" }, } }, - ["GainRandomChargeOnVaalSkillUseUnique__1_"] = { affix = "", "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", statOrder = { 6770 }, level = 1, group = "GainRandomChargeOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge", "vaal" }, tradeHashes = { [1258100102] = { "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill" }, } }, - ["CountOnFullLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Full Life while you are Cursed with Vulnerability", statOrder = { 3124 }, level = 1, group = "CountOnFullLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3257374551] = { "You count as on Full Life while you are Cursed with Vulnerability" }, } }, - ["VaalAttacksUseRageInsteadOfSoulsUnique__1_"] = { affix = "", "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", statOrder = { 2696 }, level = 90, group = "VaalAttacksUseRageInsteadOfSouls", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1103075489] = { "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls" }, } }, - ["CannotGainRageDuringSoulGainPreventionUnique__1__"] = { affix = "", "You cannot gain Rage during Soul Gain Prevention", statOrder = { 5441 }, level = 1, group = "CannotGainRageDuringSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [683365179] = { "You cannot gain Rage during Soul Gain Prevention" }, } }, - ["SupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 365 }, level = 1, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 30 Rage" }, } }, - ["ReducedRageCostUnique__1"] = { affix = "", "(10-25)% reduced Rage Cost of Skills", statOrder = { 1889 }, level = 1, group = "RageCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3415234440] = { "(10-25)% reduced Rage Cost of Skills" }, } }, - ["LifeAndReducedFireResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Life and reduced Fire Resistance", statOrder = { 1592 }, level = 1, group = "LifeAndReducedFireResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3018691556] = { "(30-40)% increased maximum Life and reduced Fire Resistance" }, } }, - ["ManaAndReducedColdResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Mana and reduced Cold Resistance", statOrder = { 1593 }, level = 1, group = "ManaAndReducedColdResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [1156957589] = { "(30-40)% increased maximum Mana and reduced Cold Resistance" }, } }, - ["EnergyShieldAndReducedLightningResistanceUnique__1"] = { affix = "", "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance", statOrder = { 1594 }, level = 1, group = "EnergyShieldAndReducedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1381972535] = { "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance" }, } }, - ["VaalSkillDamageUnique__1"] = { affix = "", "(80-120)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(80-120)% increased Damage with Vaal Skills" }, } }, - ["VaalSoulGainPreventionUnique__1__"] = { affix = "", "(6-8)% reduced Soul Gain Prevention Duration", statOrder = { 3111 }, level = 1, group = "VaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1980613100] = { "(6-8)% reduced Soul Gain Prevention Duration" }, } }, - ["LuckyCriticalsOnLowLifeUnique__1___"] = { affix = "", "Your Critical Strike Chance is Lucky while on Low Life", statOrder = { 6536 }, level = 1, group = "LuckyCriticalsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2706122133] = { "Your Critical Strike Chance is Lucky while on Low Life" }, } }, - ["UltimatumTrialDifficultyDamage2__"] = { affix = "", "10% increased Monster Damage", statOrder = { 2385 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "10% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage3"] = { affix = "", "20% increased Monster Damage", statOrder = { 2385 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "20% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage4_"] = { affix = "", "30% increased Monster Damage", statOrder = { 2385 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "30% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyDamage5_"] = { affix = "", "50% increased Monster Damage", statOrder = { 2385 }, level = 1, group = "MapMonsterDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2390685262] = { "" }, [1890519597] = { "50% increased Monster Damage" }, } }, - ["UltimatumTrialDifficultyLife2_"] = { affix = "", "30% more Monster Life", statOrder = { 2372 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "30% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife3"] = { affix = "", "70% more Monster Life", statOrder = { 2372 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "70% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife4_"] = { affix = "", "120% more Monster Life", statOrder = { 2372 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "120% more Monster Life" }, } }, - ["UltimatumTrialDifficultyLife5"] = { affix = "", "200% more Monster Life", statOrder = { 2372 }, level = 1, group = "MapMonsterLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2390685262] = { "" }, [95249895] = { "200% more Monster Life" }, } }, - ["EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6433 }, level = 1, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4100175081] = { "Increases and Reductions to Maximum Energy Shield instead apply to Ward" }, } }, - ["GlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 10% of Ward", statOrder = { 2073 }, level = 1, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3535421504] = { "Gain Added Chaos Damage equal to 10% of Ward" }, } }, - ["LocalIncreasedWardPercentUnique__1_"] = { affix = "", "(33-48)% increased Ward", statOrder = { 1535 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(33-48)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__2"] = { affix = "", "(25-35)% increased Ward", statOrder = { 1535 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(25-35)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__3"] = { affix = "", "(30-50)% increased Ward", statOrder = { 1535 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(30-50)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__4_"] = { affix = "", "(50-80)% increased Ward", statOrder = { 1535 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(50-80)% increased Ward" }, } }, - ["DamageBypassesWardPercentUnique__1"] = { affix = "", "75% of Damage taken bypasses Ward", statOrder = { 5011 }, level = 1, group = "DamageBypassesWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3000966016] = { "75% of Damage taken bypasses Ward" }, } }, - ["LocalIncreasedWardUnique__1"] = { affix = "", "+(100-150) to Ward", statOrder = { 1533 }, level = 1, group = "LocalWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-150) to Ward" }, } }, - ["WardDelayRecoveryUnique__1"] = { affix = "", "(40-60)% faster Restoration of Ward", statOrder = { 1536 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(40-60)% faster Restoration of Ward" }, } }, - ["WardDelayRecoveryUnique__2"] = { affix = "", "(30-50)% slower Restoration of Ward", statOrder = { 1536 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(30-50)% slower Restoration of Ward" }, } }, - ["GrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 781 }, level = 1, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3664803307] = { "Triggers Level 20 Summon Arbalists when Equipped" }, } }, - ["AdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 3 seconds when Ward Breaks", statOrder = { 6723 }, level = 1, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4231915769] = { "Gain Adrenaline for 3 seconds when Ward Breaks" }, } }, - ["FlaskChargesFromKillsFinalUnique__1_"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 6639 }, level = 1, group = "FlaskChargesFromKillsFinal", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [624257168] = { "80% less Flask Charges gained from Kills" }, } }, - ["FlaskChargePerSecondUniqueEnemyUnique__1___"] = { affix = "", "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently", statOrder = { 6757 }, level = 1, group = "FlaskChargePerSecondUniqueEnemy", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3599443205] = { "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently" }, } }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9530 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10279 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10269 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10288 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10287 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10270 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10280 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10293 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10292 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10272 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10285, 10290 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10284, 10289 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10282, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10281, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10271 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, - ["FlaskMoreWardUnique1"] = { affix = "", "85% less Ward during Effect", statOrder = { 1015 }, level = 1, group = "FlaskMoreWardUnique1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3615541554] = { "85% less Ward during Effect" }, } }, - ["FlaskFireColdLightningExposureOnNearbyEnemiesUnique1"] = { affix = "", "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", statOrder = { 896 }, level = 1, group = "FlaskFireColdLightningExposureOnNearbyEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3933226405] = { "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used" }, } }, - ["FlaskNonDamagingAilmentIncreasedEffectUnique__1"] = { affix = "", "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect", statOrder = { 1000 }, level = 1, group = "FlaskNonDamagingAilmentIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1122693835] = { "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect" }, } }, - ["FlaskEnduranceChargePerSecondUnique1"] = { affix = "", "Gain 1 Endurance Charge per Second during Effect", statOrder = { 985 }, level = 1, group = "FlaskEnduranceChargePerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3916499001] = { "Gain 1 Endurance Charge per Second during Effect" }, } }, - ["FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1"] = { affix = "", "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use", statOrder = { 897, 897.1 }, level = 1, group = "FlaskLoseAllEnduranceChargesGainLifePerLostCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521653232] = { "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use" }, } }, - ["FlaskCullingStrikeUnique1"] = { affix = "", "Culling Strike during Effect", statOrder = { 982 }, level = 1, group = "FlaskCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175889777] = { "Culling Strike during Effect" }, } }, - ["FlaskRemoveEffectWhenWardBreaksUnique1"] = { affix = "", "Effect is removed when Ward Breaks", statOrder = { 872 }, level = 1, group = "FlaskRemoveEffectWhenWardBreaks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3617672145] = { "Effect is removed when Ward Breaks" }, } }, - ["FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1"] = { affix = "", "Debilitate nearby Enemies for 2 Seconds when Effect ends", statOrder = { 867 }, level = 1, group = "FlaskDebilitateNearbyEnemiesWhenEffectEnds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545593248] = { "Debilitate nearby Enemies for 2 Seconds when Effect ends" }, } }, - ["EnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 7895 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2307982579] = { "Nearby Enemies Killed by anyone count as being Killed by you instead" }, } }, - ["MagicUtilityFlasksAlwaysApplyUnique__1"] = { affix = "", "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4426 }, level = 56, group = "MagicUtilityFlasksAlwaysApply", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388347909] = { "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["MagicUtilityFlasksCannotUseUnique__1____"] = { affix = "", "Magic Utility Flasks cannot be Used", statOrder = { 4425 }, level = 1, group = "MagicUtilityFlasksCannotUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3986704288] = { "Magic Utility Flasks cannot be Used" }, } }, - ["MagicUtilityFlasksCannotRemoveUnique__1"] = { affix = "", "Magic Utility Flask Effects cannot be removed", statOrder = { 4428 }, level = 1, group = "MagicUtilityFlasksCannotRemove", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [344389721] = { "Magic Utility Flask Effects cannot be removed" }, } }, - ["MaximumElementalResistanceUnique__1__"] = { affix = "", "+(1-5)% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(1-5)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__2"] = { affix = "", "-(6-4)% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-(6-4)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__3"] = { affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__4"] = { affix = "", "+(0-5)% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(0-5)% to all maximum Elemental Resistances" }, } }, - ["BaseBlockDamageTakenUnique__1___"] = { affix = "", "You take 20% of Damage from Blocked Hits", statOrder = { 5001 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, } }, - ["DoedresSkinLessCurseEffectUnique__1"] = { affix = "", "20% less Effect of your Curses", statOrder = { 2602 }, level = 1, group = "DoedresSkinLessCurseEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4106109768] = { "20% less Effect of your Curses" }, } }, - ["ChronomanceReservesNoMana"] = { affix = "", "Temporal Rift has no Reservation", statOrder = { 5785 }, level = 1, group = "ChronomanceReservesNoMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2139238642] = { "Temporal Rift has no Reservation" }, } }, - ["SupportGemsSocketedInOffHandAlsoSupportMainHandSkills"] = { affix = "", "Socketed Support Gems can also Support Skills from your Main Hand", statOrder = { 228 }, level = 1, group = "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806627038] = { "Socketed Support Gems can also Support Skills from your Main Hand" }, } }, - ["SupportGemsSocketedInAmuletAlsoSupportBodySkills"] = { affix = "", "Socketed Support Gems can also Support Skills from Equipped Body Armour", statOrder = { 227 }, level = 90, group = "SupportGemsSocketedInAmuletAlsoSupportBodySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [591645420] = { "Socketed Support Gems can also Support Skills from Equipped Body Armour" }, } }, - ["ElementalResistanceHighestMaxResistanceUnique__1_"] = { affix = "", "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", statOrder = { 6345 }, level = 1, group = "ElementalResistanceHighestMaxResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3082079953] = { "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" }, } }, - ["EnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6453 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, - ["LessRechargeRateSoullessEleganceUnique__1"] = { affix = "", "(30-40)% less Energy Shield Recharge Rate", statOrder = { 10507 }, level = 1, group = "LessRechargeRateSoullessElegance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3432301333] = { "(30-40)% less Energy Shield Recharge Rate" }, } }, - ["GlobalSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4639 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, - ["GlobalSkillGemQualityUnique__1"] = { affix = "", "+(20-30)% to Quality of all Skill Gems", statOrder = { 4640 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(20-30)% to Quality of all Skill Gems" }, } }, - ["GlobalGemExperienceGainUnique__1"] = { affix = "", "(5-10)% increased Experience Gain of Gems", statOrder = { 1884 }, level = 1, group = "GlobalGemExperienceGain", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3808869043] = { "(5-10)% increased Experience Gain of Gems" }, } }, - ["ElementalSkillsTripleDamageUnique__1"] = { affix = "", "Deal Triple Damage with Elemental Skills", statOrder = { 6347 }, level = 85, group = "ElementalSkillsTripleDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [115695112] = { "Deal Triple Damage with Elemental Skills" }, } }, - ["SocketedGemsMoreDamageForSpellsCastUnique__1"] = { affix = "", "Socketed Projectile Spells deal 150% more Damage with Hits", statOrder = { 563 }, level = 1, group = "SocketedGemsMoreDamageForSpellsCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443457281] = { "Socketed Projectile Spells deal 150% more Damage with Hits" }, } }, - ["SocketedGemsAddedCooldownUnique__1__"] = { affix = "", "Socketed Projectile Spells have +4 seconds to Cooldown", statOrder = { 564 }, level = 1, group = "SocketedGemsAddedCooldown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [470459031] = { "Socketed Projectile Spells have +4 seconds to Cooldown" }, } }, - ["SocketedGemsLessDurationUnique__1"] = { affix = "", "Socketed Projectile Spells have 80% less Skill Effect Duration", statOrder = { 617 }, level = 1, group = "SocketedGemsLessDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3104895675] = { "Socketed Projectile Spells have 80% less Skill Effect Duration" }, } }, - ["AttributeModifiersAscendanceUnique__1_"] = { affix = "", "Modifiers to Attributes instead apply to Omniscience", statOrder = { 1192 }, level = 77, group = "AttributeModifiersAscendance", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1411347992] = { "Modifiers to Attributes instead apply to Omniscience" }, } }, - ["ElementalResistPerAscendanceUnique__1__"] = { affix = "", "+1% to all Elemental Resistances per 15 Omniscience", statOrder = { 1193 }, level = 1, group = "ElementalResistPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2569472704] = { "+1% to all Elemental Resistances per 15 Omniscience" }, } }, - ["ElementalPenPerAscendanceUnique__1"] = { affix = "", "Penetrate 1% Elemental Resistances per 15 Omniscience", statOrder = { 1194 }, level = 1, group = "ElementalPenPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2757041809] = { "Penetrate 1% Elemental Resistances per 15 Omniscience" }, } }, - ["AttributeRequirementsAscendanceUnique__1"] = { affix = "", "Attribute Requirements can be satisfied by (15-25)% of Omniscience", statOrder = { 1195 }, level = 1, group = "AttributeRequirementsAscendance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3024338155] = { "Attribute Requirements can be satisfied by (15-25)% of Omniscience" }, } }, - ["LeftRingCoveredInAshUnique__1_"] = { affix = "", "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them", statOrder = { 7984 }, level = 100, group = "LeftRingCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2533512212] = { "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them" }, } }, - ["RightRingCoveredInFrostUnique__1"] = { affix = "", "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them", statOrder = { 8011 }, level = 1, group = "RightRingCoveredInFrost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3536082205] = { "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them" }, } }, - ["LifeLossReservesLifeUnique__1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds", statOrder = { 9920, 9920.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds" }, } }, - ["AttackCorrosionOnHitChanceUnique__1"] = { affix = "", "(20-30)% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4922 }, level = 1, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2523122963] = { "(20-30)% chance to inflict Corrosion on Hit with Attacks" }, } }, - ["EnduranceChargeNoArmourUnique__1_"] = { affix = "", "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", statOrder = { 6365 }, level = 1, group = "EnduranceChargeNoArmour", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3488208924] = { "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour" }, } }, - ["FrenzyChargeNoEvasionRatingUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", statOrder = { 6677 }, level = 1, group = "FrenzyChargeNoEvasionRating", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [471924383] = { "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating" }, } }, - ["BowAttacksFrenzyChargesArrowsUnique__1"] = { affix = "", "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", statOrder = { 1798 }, level = 1, group = "BowAttacksFrenzyChargesArrows", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2522975315] = { "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows" }, } }, - ["CriticalStrikeMultiplierFrenzyChargesUnique__1"] = { affix = "", "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge", statOrder = { 2059 }, level = 1, group = "CriticalStrikeMultiplierFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3375516056] = { "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge" }, } }, - ["FrenzyChargePerEnemyCritUnique__1"] = { affix = "", "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", statOrder = { 6768 }, level = 1, group = "FrenzyChargePerEnemyCrit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1302845655] = { "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike" }, } }, - ["MoreMaximumReservedLifeUnique__1"] = { affix = "", "(20-30)% more Maximum Life", statOrder = { 10500 }, level = 1, group = "MoreMaximumReservedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2783958145] = { "(20-30)% more Maximum Life" }, } }, - ["PuzzlePieceCleansingFireUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flesh", statOrder = { 10498 }, level = 1, group = "PuzzlePieceCleansingFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1190333629] = { "Allocates 1 if you have the matching modifier on Forbidden Flesh" }, } }, - ["PuzzlePieceGreatTangleUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flame", statOrder = { 10499 }, level = 1, group = "PuzzlePieceGreatTangle", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2460506030] = { "Allocates 1 if you have the matching modifier on Forbidden Flame" }, } }, - ["GlobalNoEnergyShieldUnique__1"] = { affix = "", "Removes all Energy Shield", statOrder = { 2171 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["NearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4430 }, level = 1, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469279727] = { "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds" }, } }, - ["GainVinesOnCriticalStrikeUnique__1"] = { affix = "", "You gain 3 Grasping Vines when you take a Critical Strike", statOrder = { 4429 }, level = 1, group = "GainVinesOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [375932027] = { "You gain 3 Grasping Vines when you take a Critical Strike" }, } }, - ["AllDamagePoisonsGraspingVinesUnique__1"] = { affix = "", "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines", statOrder = { 4431 }, level = 1, group = "AllDamagePoisonsGraspingVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3190526553] = { "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines" }, } }, - ["ReducedCriticalDamageTakenPoisonUnique__1"] = { affix = "", "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies", statOrder = { 4433 }, level = 1, group = "ReducedCriticalDamageTakenPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2070361501] = { "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Physical Damage taken as Fire Damage", statOrder = { 9668 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "(10-20)% of Physical Damage taken as Fire Damage" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 9668 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "40% of Physical Damage taken as Fire Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Cold Damage taken as Fire Damage", statOrder = { 5830 }, level = 1, group = "ColdHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1642347505] = { "(10-20)% of Cold Damage taken as Fire Damage" }, } }, - ["LightningHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Lightning Damage taken as Fire Damage", statOrder = { 7464 }, 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 = { 9962 }, 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 = { 4841 }, level = 1, group = "AttackBlockPerFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [8517868] = { "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently" }, } }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5007 }, 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 = { 649 }, 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 = { 7982 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7952 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 588 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack", statOrder = { 9976, 9976.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Exerting them", statOrder = { 10493 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Exerting them" }, } }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage with Hits can Chill", statOrder = { 2865 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage with Hits can Chill" }, } }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage Taken from Hits can Chill you", statOrder = { 2868 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244239777] = { "All Damage Taken from Hits can Chill you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4635 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5784 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits have Damage taken increased by Chill Effect", statOrder = { 6374 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits have Damage taken increased by Chill Effect" }, } }, - ["EnemiesChilledLessDamageDealtUnique__1"] = { affix = "", "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", statOrder = { 6373 }, level = 1, group = "EnemiesChilledLessDamageDealt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3594661200] = { "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect" }, } }, - ["GainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6828 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds" }, } }, - ["GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1"] = { affix = "", "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon", statOrder = { 7941 }, level = 1, group = "GainSoulEaterStackOnRareOrUniqueKillWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2859483755] = { "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon" }, } }, - ["SoulEaterStackCountUnique__1"] = { affix = "", "+(-10-10) to maximum number of Eaten Souls", statOrder = { 7269 }, level = 1, group = "SoulEaterStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1915836277] = { "+(-10-10) to maximum number of Eaten Souls" }, } }, - ["LifeRegenerationNotAppliedUnique__1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7395 }, 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 = { 9890, 9890.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 = { 707 }, level = 1, group = "EnduringCrySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1031644844] = { "Grants Level 10 Enduring Cry Skill" }, } }, - ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3401 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["SpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 20% chance to deal Double Damage", statOrder = { 10135 }, 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 = { 5898 }, 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 = { 727 }, level = 1, group = "GrantsTouchOfFireSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1943415243] = { "Grants Level 20 Approaching Flames Skill" }, } }, - ["GainAdrenalineFireTouchedGainUnique__1"] = { affix = "", "Gain Adrenaline when you become Flame-Touched", statOrder = { 6722 }, level = 1, group = "GainAdrenalineFireTouchedGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [349619704] = { "Gain Adrenaline when you become Flame-Touched" }, } }, - ["LoseAdrenalineFireTouchedLossUnique__1"] = { affix = "", "Lose Adrenaline when you cease to be Flame-Touched", statOrder = { 8138 }, level = 1, group = "LoseAdrenalineFireTouchedLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [138579627] = { "Lose Adrenaline when you cease to be Flame-Touched" }, } }, - ["FireDamageTakenFireTouchedUnique__1"] = { affix = "", "Take 6000 Fire Damage per Second while Flame-Touched", statOrder = { 6577 }, level = 1, group = "FireDamageTakenFireTouched", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3511992942] = { "Take 6000 Fire Damage per Second while Flame-Touched" }, } }, - ["HasOnslaughtUnique__1"] = { affix = "", "Onslaught", statOrder = { 3602 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["MinionPhysicalConvertToColdUnique__1"] = { affix = "", "Minions convert 50% of Physical Damage to Cold Damage", statOrder = { 1963 }, level = 1, group = "MinionPhysicalConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042266] = { "Minions convert 50% of Physical Damage to Cold Damage" }, } }, - ["MinionOnlyDealColdDamageUnique__1"] = { affix = "", "Minions deal no Non-Cold Damage", statOrder = { 9303 }, level = 1, group = "MinionOnlyDealColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [935592011] = { "Minions deal no Non-Cold Damage" }, } }, - ["LifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7433 }, level = 1, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2161482953] = { "Regenerate 100 Life per Second while on Low Life" }, } }, - ["TouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9676 }, level = 1, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4197792189] = { "You can be Touched by Tormented Spirits" }, } }, - ["QuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9779 }, level = 1, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [699756626] = { "Quicksilver Flasks you Use also apply to nearby Allies" }, } }, - ["ColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5807 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086896309] = { "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy" }, } }, - ["ColdAddedAsFireFrozenEnemyUnique__1"] = { affix = "", "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5808 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1383929411] = { "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["LightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7451 }, level = 1, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13172430] = { "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy" }, } }, - ["DoubleDamageWith200StrengthUnique__1"] = { affix = "", "10% chance to deal Double Damage while you have at least 200 Strength", statOrder = { 5662 }, level = 1, group = "DoubleDamageWith200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1535606605] = { "10% chance to deal Double Damage while you have at least 200 Strength" }, } }, - ["TripleDamageWith400StrengthUnique__1"] = { affix = "", "5% chance to deal Triple Damage while you have at least 400 Strength", statOrder = { 5674 }, level = 1, group = "TripleDamageWith400Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147155654] = { "5% chance to deal Triple Damage while you have at least 400 Strength" }, } }, - ["BlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+20% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5231 }, level = 1, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3304203764] = { "+20% Chance to Block Attack Damage from Cursed Enemies" }, } }, - ["ApplyDecayOnCurseUnique__1"] = { affix = "", "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds", statOrder = { 6144 }, level = 1, group = "ApplyDecayOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [773846741] = { "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds" }, } }, - ["FrenzyChargeOnHitBlindedUnique__1"] = { affix = "", "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded", statOrder = { 6762 }, level = 1, group = "FrenzyChargeOnHitBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2478268100] = { "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded" }, } }, - ["RecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover (100-200) Life when you Suppress Spell Damage", statOrder = { 9848 }, level = 1, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1807705940] = { "Recover (100-200) Life when you Suppress Spell Damage" }, } }, - ["PhasingOnLowLifeUnique__1"] = { affix = "", "You have Phasing while on Low Life", statOrder = { 6805 }, level = 1, group = "PhasingOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [23466649] = { "You have Phasing while on Low Life" }, } }, - ["ElusiveOnLowLifeUnique__1"] = { affix = "", "Gain Elusive on reaching Low Life", statOrder = { 6749 }, level = 1, group = "ElusiveOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2868692131] = { "Gain Elusive on reaching Low Life" }, } }, - ["KnockbackDistanceUnique__1"] = { affix = "", "100% increased Knockback Distance", statOrder = { 2007 }, level = 1, group = "KnockbackDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [565784293] = { "100% increased Knockback Distance" }, } }, - ["StrikeSkillKnockbackUnique__1"] = { affix = "", "Melee Hits with Strike Skills always Knockback", statOrder = { 10258 }, level = 1, group = "StrikeSkillKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1737583880] = { "Melee Hits with Strike Skills always Knockback" }, } }, - ["MeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1173 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["AdrenalineOnKillUnique__1"] = { affix = "", "Gain Adrenaline for (1-3) second on Kill", statOrder = { 6719 }, level = 38, group = "AdrenalineOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4145689649] = { "Gain Adrenaline for (1-3) second on Kill" }, } }, - ["LifeCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 5053 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" }, } }, - ["EnergyShieldCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost", statOrder = { 5052 }, level = 1, group = "EnergyShieldCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4013794060] = { "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost" }, } }, - ["BowAttacksCullingStrikeUnique__1"] = { affix = "", "Bow Attacks have Culling Strike", statOrder = { 5268 }, level = 1, group = "BowAttacksCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217693429] = { "Bow Attacks have Culling Strike" }, } }, - ["MovementVelocityPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, 1% increased Movement Speed", statOrder = { 9409 }, level = 1, group = "MovementVelocityPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [504462346] = { "For each nearby corpse, 1% increased Movement Speed" }, } }, - ["FlatLifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 8 Life per second", statOrder = { 7403 }, level = 1, group = "FlatLifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2500585555] = { "For each nearby corpse, Regenerate 8 Life per second" }, } }, - ["WeaponAddedLightningDamagePerEnergyShieldUnique__1"] = { affix = "", "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield", statOrder = { 6472 }, level = 1, group = "WeaponAddedLightningDamagePerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973269941] = { "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield" }, } }, - ["SkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have (20-40)% chance to not count that Attack", statOrder = { 5546 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Exert an Attack have (20-40)% chance to not count that Attack" }, } }, - ["CannotHaveNonSpectreMinionsUnique__1"] = { affix = "", "You cannot have Non-Spectre Minions", statOrder = { 10657 }, level = 1, group = "CannotHaveNonSpectreMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2836980154] = { "You cannot have Non-Spectre Minions" }, } }, - ["MinimumChargesEqualToMaximumWhileStationaryUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5891, 5891.1, 5891.2 }, level = 1, group = "MinimumChargesEqualToMaximumWhileStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["ThrowTrapsInCircleUnique__1"] = { affix = "", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10508 }, level = 1, group = "ThrowTrapsInCircleSunblast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2727188901] = { "Traps from Skills are thrown randomly around targeted location" }, } }, - ["TrapsCannotBeTriggeredByEnemiesUnique__1"] = { affix = "", "Traps cannot be triggered by Enemies", statOrder = { 10420 }, level = 1, group = "TrapsCannotBeTriggeredByEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861759600] = { "Traps cannot be triggered by Enemies" }, } }, - ["AdditionalTrapsThrownUnique__1"] = { affix = "", "Skills which Throw Traps throw up to 2 additional Traps", statOrder = { 9527 }, level = 1, group = "AdditionalTrapsThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 2 additional Traps" }, } }, - ["FreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5684 }, level = 1, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, - ["AddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9229 }, level = 1, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294344579] = { "Adds 37 to 71 Chaos Damage for each Curse on the Enemy" }, } }, - ["GolemsAddedPhysicalDamageUnique__1"] = { affix = "", "Golems have (96-120) to (132-160) Added Attack Physical Damage", statOrder = { 6897 }, level = 1, group = "GolemsAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1417394145] = { "Golems have (96-120) to (132-160) Added Attack Physical Damage" }, } }, - ["GainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6775 }, level = 1, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4080206249] = { "Gain up to maximum Endurance Charges when you take a Critical Strike" }, } }, - ["ShareMaximumEnduranceChargesPartyUnique__1"] = { affix = "", "Your nearby party members maximum Endurance Charges is equal to yours", statOrder = { 9464 }, level = 1, group = "ShareMaximumEnduranceChargesParty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [598215770] = { "Your nearby party members maximum Endurance Charges is equal to yours" }, } }, - ["SkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10050, 10050.1 }, level = 1, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1021552211] = { "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior" }, } }, - ["ConsecratedGroundStationarySTRHighestUnique__1"] = { affix = "", "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute", statOrder = { 5862, 5862.1 }, level = 1, group = "ConsecratedGroundStationarySTRHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1196333117] = { "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute" }, } }, - ["ProfaneGroundCriticalStrikeINTHighestUnique__1"] = { affix = "", "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute", statOrder = { 9724, 9724.1 }, level = 1, group = "ProfaneGroundCriticalStrikeINTHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2047846165] = { "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute" }, } }, - ["ConsecratedGroundLingersUnique__1"] = { affix = "", "Effects of Consecrated Ground you create Linger for 4 seconds", statOrder = { 10688 }, 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 = { 10693 }, 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 = { 9826 }, level = 60, group = "RandomProjectileDirection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, } }, - ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2828 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["CastSpeedAppliesToAttackSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed apply to Attack Speed", statOrder = { 10492 }, level = 1, group = "CastSpeedAppliesToAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4126447694] = { "Increases and Reductions to Cast Speed apply to Attack Speed" }, } }, - ["SpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells inflict Impale", statOrder = { 10160 }, level = 1, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4084476257] = { "Critical Strikes with Spells inflict Impale" }, } }, - ["SpellImpaleEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Impales inflicted with Spells", statOrder = { 7250 }, level = 1, group = "SpellImpaleEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1480595847] = { "(30-50)% increased Effect of Impales inflicted with Spells" }, } }, - ["YouCannotImpaleTheImpaledUnique_1UNUSED"] = { affix = "", "[DNT] Impaled Enemies Cannot be Impaled", statOrder = { 10658 }, level = 1, group = "ImpaledEnemiesCannotBeImpaled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294017425] = { "[DNT] Impaled Enemies Cannot be Impaled" }, } }, - ["HitsCannotInflictMoreThanOneImpale_1UNUSED"] = { affix = "", "Your Hits cannot inflict more than 1 Impale", statOrder = { 7165 }, level = 100, group = "CannotInflictMoreThanOneImpale", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [452960025] = { "Your Hits cannot inflict more than 1 Impale" }, } }, - ["ImpalesInflictedLastAdditionalHitsUnique_1UNUSED"] = { affix = "", "Impales you inflict last (3-6) additional Hits", statOrder = { 7260 }, level = 1, group = "ImpaleLastsForExtraHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last (3-6) additional Hits" }, } }, - ["ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1"] = { affix = "", "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", statOrder = { 7263 }, level = 100, group = "ChanceMeleeHitsDontConsumeStrongestImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2136537914] = { "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit" }, } }, - ["ImpaleDurationUnique_1"] = { affix = "", "(40-50)% less Impale Duration", statOrder = { 8018 }, level = 1, group = "ImpaledDebuffDurationFromWoeSpike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961864874] = { "(40-50)% less Impale Duration" }, } }, - ["ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED"] = { affix = "", "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit", statOrder = { 7262 }, level = 1, group = "ChanceMeleeHitsDontConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2314992402] = { "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit" }, } }, - ["AncestorTotemBuffLingersUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10768 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["OneAncestorTotemBuffUnique__1"] = { affix = "", "Socketed Slam Gems are Supported by Level 25 Earthbreaker", statOrder = { 267 }, level = 1, group = "OneAncestorTotemBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [940684417] = { "Socketed Slam Gems are Supported by Level 25 Earthbreaker" }, } }, - ["DamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6099 }, level = 1, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2762445213] = { "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, - ["ElementalDamageReductionChaosResistUnique__1"] = { affix = "", "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", statOrder = { 4070 }, level = 65, group = "ElementalDamageReductionChaosResist", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3990082744] = { "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance" }, } }, - ["CurseLimitMaximumPowerChargesUnique__1"] = { affix = "", "Your Curse Limit is equal to your maximum Power Charges", statOrder = { 6936 }, level = 1, group = "CurseLimitMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973000407] = { "Your Curse Limit is equal to your maximum Power Charges" }, } }, - ["PowerChargeOnCurseUnique__1"] = { affix = "", "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell", statOrder = { 6809 }, level = 1, group = "PowerChargeOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [322835727] = { "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell" }, } }, - ["SpellCritChanceEqualsWeaponCritChanceUnique__1"] = { affix = "", "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", statOrder = { 5055 }, level = 1, group = "SpellCritChanceEqualsWeaponCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2560911401] = { "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" }, } }, - ["AttacksCannotCritUnique__1"] = { affix = "", "Cannot deal Critical Strikes with Attacks", statOrder = { 5435 }, level = 1, group = "AttacksCannotCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3223376951] = { "Cannot deal Critical Strikes with Attacks" }, } }, - ["CursedEnemiesCannotInflictElementalAilmentsUnique__1"] = { affix = "", "Cursed Enemies cannot inflict Elemental Ailments on You", statOrder = { 5447 }, level = 30, group = "CursedEnemiesCannotInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2643613764] = { "Cursed Enemies cannot inflict Elemental Ailments on You" }, } }, - ["AvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "Ignore Stuns while Casting" }, } }, - ["MaximumCritChanceIs50Unique__1"] = { affix = "", "Maximum Critical Strike Chance is 50%", statOrder = { 9133 }, level = 1, group = "MaximumCritChanceIs50", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1463929958] = { "Maximum Critical Strike Chance is 50%" }, } }, - ["DealNoElementalPhysicalDamageUnique__1"] = { affix = "", "Deal no Physical or Elemental Damage", statOrder = { 6148 }, level = 1, group = "DealNoElementalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4157542794] = { "Deal no Physical or Elemental Damage" }, } }, - ["TemporalChainsCooldownRecoveryUnique__1"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", statOrder = { 5874 }, level = 1, group = "TemporalChainsCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2954796309] = { "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["TemporalChainsCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", statOrder = { 4531 }, level = 1, group = "TemporalChainsCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3616500790] = { "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["DespairWitherOnHitUnique__1"] = { affix = "", "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", statOrder = { 7287 }, level = 1, group = "DespairWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1904031052] = { "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds" }, } }, - ["DespairImmuneToCursesUnique__1"] = { affix = "", "Immune to Curses if you've cast Despair in the past 10 seconds", statOrder = { 7224 }, level = 1, group = "DespairImmuneToCurses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2773026887] = { "Immune to Curses if you've cast Despair in the past 10 seconds" }, } }, - ["ElementalWeaknessPhysicalAsRandomElementUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 6806 }, level = 1, group = "ElementalWeaknessPhysicalAsRandomElement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4281949537] = { "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["ElementalWeaknessImmuneToExposureUnique__1"] = { affix = "", "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 7233 }, level = 1, group = "ElementalWeaknessImmuneToExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2921954092] = { "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["EnfeebleCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", statOrder = { 5980 }, level = 1, group = "EnfeebleCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2379274646] = { "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds" }, } }, - ["EnfeebleNoExtraCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", statOrder = { 10351 }, level = 1, group = "EnfeebleNoExtraCritDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077357269] = { "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds" }, } }, - ["ConductivityUnaffectedByShockUnique__1"] = { affix = "", "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", statOrder = { 10477 }, level = 1, group = "ConductivityUnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517037025] = { "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds" }, } }, - ["ConductivityLightningExposureOnHitUnique__1"] = { affix = "", "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", statOrder = { 7284 }, level = 1, group = "ConductivityLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3339663313] = { "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds" }, } }, - ["FlammabilityUnaffectedByIgniteUnique__1"] = { affix = "", "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", statOrder = { 10474 }, level = 1, group = "FlammabilityUnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40907696] = { "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds" }, } }, - ["FlammabilityFireExposureOnHitUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", statOrder = { 7279 }, level = 1, group = "FlammabilityFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3259812992] = { "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds" }, } }, - ["FrostbiteUnaffectedByFreezeUnique__1"] = { affix = "", "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", statOrder = { 10470 }, level = 1, group = "FrostbiteUnaffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4194606073] = { "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds" }, } }, - ["FrostbiteColdExposureOnHitUnique__1"] = { affix = "", "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", statOrder = { 7277 }, level = 1, group = "FrostbiteColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1168138239] = { "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds" }, } }, - ["PunishmentImmuneToReflectedDamageUnique__1"] = { affix = "", "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", statOrder = { 7241 }, level = 1, group = "PunishmentImmuneToReflectedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2713909980] = { "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds" }, } }, - ["PunishmentIntimidateOnHitUnique__1"] = { affix = "", "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", statOrder = { 7300 }, level = 1, group = "PunishmentIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [91505809] = { "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds" }, } }, - ["VulnerabilityUnaffectedByBleedUnique__1"] = { affix = "", "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", statOrder = { 10451 }, level = 1, group = "VulnerabilityUnaffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971937289] = { "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds" }, } }, - ["VulnerabilityDoubleDamageUnique__1"] = { affix = "", "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", statOrder = { 5672 }, level = 1, group = "VulnerabilityDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304988974] = { "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds" }, } }, - ["NearbyEnemyZeroChaosDamageResistanceUnique__1"] = { affix = "", "Nearby Enemies' Chaos Resistance is 0", statOrder = { 7922 }, level = 65, group = "NearbyEnemyZeroChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, [663080464] = { "Nearby Enemies' Chaos Resistance is 0" }, } }, - ["AllElementalDamageConvertedToChaosUnique__1"] = { affix = "", "All Elemental Damage Converted to Chaos Damage", statOrder = { 5873 }, level = 65, group = "ConvertAllElementalToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [2423544033] = { "All Elemental Damage Converted to Chaos Damage" }, } }, - ["NearbyEnemyReservesLifeUnique__1"] = { affix = "", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 7920 }, level = 1, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2492660287] = { "Reserves 8% of Life" }, [1063263585] = { "Nearby Enemy Monsters have at least 8% of Life Reserved" }, } }, - ["ChaosDamageOverTimeHealsLeechLifeUnique__1"] = { affix = "", "Taking Chaos Damage over Time heals you instead while Leeching Life", statOrder = { 5737 }, level = 53, group = "ChaosDamageOverTimeHealsLeechLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1971757986] = { "Taking Chaos Damage over Time heals you instead while Leeching Life" }, } }, - ["ModifiersToSuppressionApplyToAilmentAvoidUnique__1"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value", statOrder = { 10181 }, level = 1, group = "ModifiersToSuppressionApplyToAilmentAvoid", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2401345409] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value" }, } }, - ["ShockEffectLeechingESUnique__1"] = { affix = "", "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield", statOrder = { 10005 }, level = 1, group = "ShockEffectLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3578946428] = { "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield" }, } }, - ["ChillEffectLeechingManaUnique__1"] = { affix = "", "(60-100)% increased Effect of Chills you inflict while Leeching Mana", statOrder = { 5772 }, level = 1, group = "ChillEffectLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [898270877] = { "(60-100)% increased Effect of Chills you inflict while Leeching Mana" }, } }, - ["UnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10479 }, level = 1, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4102393882] = { "Unaffected by Shock while Leeching Energy Shield" }, } }, - ["UnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10459 }, level = 1, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4014328139] = { "Unaffected by Chill while Leeching Mana" }, } }, - ["QuiverModifierEffectUnique__1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9780 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["LifeRegenerationPercentPerAilmentUnique__1"] = { affix = "", "Regenerate 2% of Life per second for each different Ailment affecting you", statOrder = { 7404 }, level = 18, group = "LifeRegenerationPercentPerAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3491639130] = { "Regenerate 2% of Life per second for each different Ailment affecting you" }, } }, - ["AdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5688, 5688.1 }, level = 1, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [414749123] = { "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["OnslaughtOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5697, 5697.1 }, level = 1, group = "OnslaughtOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3106724907] = { "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["CannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5423 }, level = 1, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2916280114] = { "Cannot be Stunned by Suppressed Spell Damage" }, } }, - ["DebilitateEnemiesSuppressedDamageUnique__1"] = { affix = "", "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage", statOrder = { 6153 }, level = 1, group = "DebilitateEnemiesSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3019649166] = { "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage" }, } }, - ["StunningHitsRecoverLifeUnique__1"] = { affix = "", "(20-30)% of Damage taken from Stunning Hits is Recovered as Life", statOrder = { 6118 }, level = 1, group = "StunningHitsRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3913936991] = { "(20-30)% of Damage taken from Stunning Hits is Recovered as Life" }, } }, - ["StunningHitsRecoverEnergyShieldUnique__1"] = { affix = "", "50% of Damage taken from Stunning Hits is Recovered as Energy Shield", statOrder = { 6117 }, level = 1, group = "StunningHitsRecoverEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [763940918] = { "50% of Damage taken from Stunning Hits is Recovered as Energy Shield" }, } }, - ["ArmourAppliesToChaosDamageUnique__1"] = { affix = "", "Armour also applies to Chaos Damage taken from Hits", statOrder = { 4993 }, level = 1, group = "ArmourAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186532642] = { "Armour also applies to Chaos Damage taken from Hits" }, } }, - ["PhysicalDamageBypassesEnergyShieldUnique__1"] = { affix = "", "Physical Damage taken bypasses Energy Shield", statOrder = { 9606 }, level = 1, group = "PhysicalDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2649513539] = { "Physical Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageBypassEnergyShieldUnique_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield", statOrder = { 1152 }, level = 80, group = "SuppressedDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247456045] = { "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageRecoupedAsEnergyShield_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield", statOrder = { 1153 }, level = 1, group = "SuppressedSpellDamageRecoupedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1993646143] = { "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield" }, } }, - ["RecoverLifeAlteratingUnique__1"] = { affix = "", "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds", statOrder = { 10505, 10505.1, 10505.2 }, level = 62, group = "RecoverLifeAlterating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3938394827] = { "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds" }, } }, - ["LinkLoseNoExperienceUnique__1"] = { affix = "", "Lose no Experience when you die because a Linked target died", statOrder = { 7497 }, level = 55, group = "LinkLoseNoExperience", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738821856] = { "Lose no Experience when you die because a Linked target died" }, } }, - ["LinkTargetCannotDieUnique__1"] = { affix = "", "Linked Targets Cannot Die for 2 seconds after you Die", statOrder = { 7496 }, level = 1, group = "LinkTargetCannotDie", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3251211004] = { "Linked Targets Cannot Die for 2 seconds after you Die" }, } }, - ["LinkSkillCastSpeedUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Cast Speed", statOrder = { 7492 }, level = 1, group = "LinkSkillCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2597985144] = { "Link Skills have (10-15)% increased Cast Speed" }, } }, - ["LinkSkillEffectDurationUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Skill Effect Duration", statOrder = { 7494 }, level = 1, group = "LinkSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1214762172] = { "Link Skills have (10-15)% increased Skill Effect Duration" }, } }, - ["LinkSkillFlaskEffectsUnique__1"] = { affix = "", "Non-Unique Utility Flasks you Use apply to Linked Targets", statOrder = { 6650 }, level = 50, group = "LinkSkillFlaskEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [865273657] = { "Non-Unique Utility Flasks you Use apply to Linked Targets" }, } }, - ["MinionWitherOnHitUnique__1"] = { affix = "", "Minions have 60% chance to inflict Withered on Hit", statOrder = { 9363 }, level = 1, group = "MinionWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1387367793] = { "Minions have 60% chance to inflict Withered on Hit" }, } }, - ["MinionCriticalStrikeMultiplierAgainstWitheredUnique__1"] = { affix = "", "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy", statOrder = { 9364 }, level = 1, group = "MinionCriticalStrikeMultiplierAgainstWithered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1494965559] = { "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy" }, } }, - ["BleedingExpiresSlowerWhileMovingUnique__1"] = { affix = "", "Bleeding on you expires 75% slower while Moving", statOrder = { 5114 }, level = 1, group = "BleedingExpiresSlowerWhileMoving", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [391460978] = { "Bleeding on you expires 75% slower while Moving" }, } }, - ["CannotBeStunnedWhileBleedingUnique__1"] = { affix = "", "Cannot be Stunned while Bleeding", statOrder = { 5429 }, level = 1, group = "CannotBeStunnedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638865425] = { "Cannot be Stunned while Bleeding" }, } }, - ["CannotBePoisonedWhileBleedingUnique__1"] = { affix = "", "Cannot be Poisoned while Bleeding", statOrder = { 5415 }, level = 1, group = "CannotBePoisonedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2784102684] = { "Cannot be Poisoned while Bleeding" }, } }, - ["ExertedAttackDamageUnique__1"] = { affix = "", "Exerted Attacks deal 200% increased Damage", statOrder = { 6361 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal 200% increased Damage" }, } }, - ["ExertedAttackKnockbackChanceUnique__1"] = { affix = "", "Exerted Attacks Knock Enemies Back on Hit", statOrder = { 6511 }, level = 1, group = "ExertedAttackKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1634061592] = { "Exerted Attacks Knock Enemies Back on Hit" }, } }, - ["LocalChanceToBleedUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["AlwaysPierceBurningEnemiesUnique__1"] = { affix = "", "Projectiles Pierce all Burning Enemies", statOrder = { 4660 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Burning Enemies" }, } }, - ["ArrowAddedFireDamagePerEnemyPiercedUnique__1"] = { affix = "", "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced", statOrder = { 4784 }, level = 1, group = "ArrowAddedFireDamagePerEnemyPierced", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3726936056] = { "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced" }, } }, - ["MinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9315 }, level = 1, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1586164348] = { "Minion Life is increased by their Overcapped Fire Resistance" }, } }, - ["SupportedByInfernalLegionUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Infernal Legion", statOrder = { 320 }, level = 1, group = "SupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2201102274] = { "Socketed Gems are Supported by Level 30 Infernal Legion" }, } }, - ["NearbyEnemiesCoveredInAshUnique__1"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7911 }, level = 1, group = "NearbyEnemiesCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["ColdExposureAdditionalResistanceUnique__1"] = { affix = "", "Cold Exposure you inflict applies an extra -12% to Cold Resistance", statOrder = { 5829 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [600221736] = { "Cold Exposure you inflict applies an extra -12% to Cold Resistance" }, } }, - ["FreezeProliferationUnique__1"] = { affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2225 }, level = 1, group = "FreezeProliferationAmulet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3865389316] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2228 }, level = 1, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640259660] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["AddedLightningDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4876 }, level = 1, group = "AddedLightningDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [817611267] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["CriticalStrikeChancePerIntelligenceUnique__1"] = { affix = "", "5% increased Critical Strike Chance per 25 Intelligence", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861913998] = { "5% increased Critical Strike Chance per 25 Intelligence" }, } }, - ["LifeLeechFromAttacksPermyriadUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LightningNonCriticalStrikesLuckyUnique__1"] = { affix = "", "Lightning Damage with Non-Critical Strikes is Lucky", statOrder = { 6540 }, level = 1, group = "LightningNonCriticalStrikesLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430928642] = { "Lightning Damage with Non-Critical Strikes is Lucky" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks" }, } }, - ["ItemCanHaveShieldWeaponTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8038, 8038.1 }, level = 1, group = "ItemCanHaveShieldWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827605890] = { "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveTwoHandedSwordWeaponTreeUnique1"] = { affix = "", "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8039, 8039.1 }, level = 1, group = "ItemCanHaveTwoHandedSwordWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2141582975] = { "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveSupportGemsOnlyTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8037, 8037.1 }, level = 1, group = "ItemCanHaveSupportGemsOnlyTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3031897787] = { "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["LowLifeInstantLifeRecoveryUnique__1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7355 }, level = 38, group = "LowLifeInstantLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["LowManaInstantManaRecoveryUnique__1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 8179 }, 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 = { 9153 }, 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 = { 7152, 7152.1, 7152.2, 7152.3, 7152.4, 7152.5, 7152.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 = { 8129 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4149388787] = { "100% increased effect of Tattoos in Radius" }, } }, - ["GainSpellCostAsESUnique__1"] = { affix = "", "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it", statOrder = { 6829, 6829.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 = { 3282 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-25)% increased Warcry Speed" }, } }, - ["WarcrySpeedUnique__2"] = { affix = "", "(25-35)% increased Warcry Speed", statOrder = { 3282 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-35)% increased Warcry Speed" }, } }, - ["LocalTreatElementalResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Elemental Resistance values as inverted", statOrder = { 8036 }, level = 1, group = "LocalTreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2750800428] = { "Treats Enemy Monster Elemental Resistance values as inverted" }, } }, - ["LocalTreatChaosResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Chaos Resistance values as inverted", statOrder = { 2821 }, level = 1, group = "LocalTreatChaoslResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3897054103] = { "Treats Enemy Monster Chaos Resistance values as inverted" }, } }, - ["MinionsUseMainHandBaseCritUnique__1"] = { affix = "", "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon", statOrder = { 9373, 9373.1 }, level = 1, group = "MinionsUseMainHandBaseCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [3700085184] = { "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon" }, } }, - ["TreatResistancesAsMaxChanceUnique__1"] = { affix = "", "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6425 }, level = 1, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [204458505] = { "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits" }, } }, - ["TakeNoBurningDamageIfStopBurningUnique__1"] = { affix = "", "Take no Burning Damage if you've stopped taking Burning Damage Recently", statOrder = { 10352 }, level = 1, group = "TakeNoBurningDamageIfStopBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2738190959] = { "Take no Burning Damage if you've stopped taking Burning Damage Recently" }, } }, - ["GainMissingLifeOnHitUnique__1"] = { affix = "", "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy", statOrder = { 9376 }, level = 62, group = "GainMissingLifeOnHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1383676476] = { "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy" }, } }, - ["UnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10465 }, level = 1, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1575046591] = { "Unaffected by Damaging Ailments" }, } }, - ["NonExertedAttacksNoDamageUnique__1"] = { affix = "", "Non-Exerted Attacks deal no Damage", statOrder = { 9507 }, level = 1, group = "NonExertedAttacksNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3303984198] = { "Non-Exerted Attacks deal no Damage" }, } }, - ["LifeLeechInstantExertedAttacksUnique__1"] = { affix = "", "Life Leech from Exerted Attacks is instant", statOrder = { 7377 }, level = 1, group = "LifeLeechInstantExertedAttacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272906215] = { "Life Leech from Exerted Attacks is instant" }, } }, - ["QuiverChillAsThoughtDealingMoreDamageUnique__1"] = { affix = "", "Chill Enemies as though dealing (60-100)% more Damage", statOrder = { 10504 }, level = 1, group = "QuiverChillAsThoughtDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223307291] = { "Chill Enemies as though dealing (60-100)% more Damage" }, } }, - ["NgamahusEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kaom on Kill", statOrder = { 672 }, level = 62, group = "NgamahusEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [817287945] = { "10% chance to Trigger Summon Spirit of Kaom on Kill" }, } }, - ["KitavasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Utula on Kill", statOrder = { 671 }, level = 62, group = "KitavasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272515409] = { "10% chance to Trigger Summon Spirit of Utula on Kill" }, } }, - ["TukohamasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Akoya on Kill", statOrder = { 677 }, level = 62, group = "TukohamasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3888707953] = { "10% chance to Trigger Summon Spirit of Akoya on Kill" }, } }, - ["RongokuraisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kahuturoa on Kill", statOrder = { 674 }, level = 62, group = "RongokuraisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264841388] = { "10% chance to Trigger Summon Spirit of Kahuturoa on Kill" }, } }, - ["TasaliosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Rakiata on Kill", statOrder = { 675 }, level = 62, group = "TasaliosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1630969195] = { "10% chance to Trigger Summon Spirit of Rakiata on Kill" }, } }, - ["ArohonguisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ikiaho on Kill", statOrder = { 669 }, level = 62, group = "ArohonguisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1163205473] = { "10% chance to Trigger Summon Spirit of Ikiaho on Kill" }, } }, - ["RamakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ahuana on Kill", statOrder = { 673 }, level = 62, group = "RamakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [31336590] = { "10% chance to Trigger Summon Spirit of Ahuana on Kill" }, } }, - ["HinekorasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Tawhanuku on Kill", statOrder = { 670 }, level = 62, group = "HinekorasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217417523] = { "10% chance to Trigger Summon Spirit of Tawhanuku on Kill" }, } }, - ["TawhoasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Maata on Kill", statOrder = { 676 }, level = 62, group = "TawhoasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3572665414] = { "10% chance to Trigger Summon Spirit of Maata on Kill" }, } }, - ["ValakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kiloava on Kill", statOrder = { 678 }, level = 62, group = "ValakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999837849] = { "10% chance to Trigger Summon Spirit of Kiloava on Kill" }, } }, - ["NearbyEnemyPhysicalDamageConvertedToFire__1"] = { affix = "", "Nearby Enemies Convert 25% of their Physical Damage to Fire", statOrder = { 10726 }, level = 1, group = "NearbyEnemyPhysicalDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729324251] = { "Nearby Enemies Convert 25% of their Physical Damage to Fire" }, } }, - ["IncreasedLifeEmptyRedSocketUnique__1"] = { affix = "", "+40 to maximum Life for each Empty Red Socket on any Equipped Item", statOrder = { 4438 }, level = 60, group = "IncreasedLifeEmptyRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [726359715] = { "+40 to maximum Life for each Empty Red Socket on any Equipped Item" }, } }, - ["IncreasedAccuracyEmptyGreenSocketUnique__1"] = { affix = "", "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item", statOrder = { 4439 }, level = 1, group = "IncreasedAccuracyEmptyGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4280703528] = { "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item" }, } }, - ["IncreasedManaEmptyBlueSocketUnique__1"] = { affix = "", "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item", statOrder = { 4440 }, level = 1, group = "IncreasedManaEmptyBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2962020005] = { "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item" }, } }, - ["AllResistEmptyWhiteSocketUnique__1"] = { affix = "", "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item", statOrder = { 4441 }, level = 1, group = "AllResistEmptyWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [597739519] = { "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item" }, } }, - ["LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1"] = { affix = "", "-2 to level of Socketed Skill Gems per Socketed Gem", statOrder = { 8023 }, level = 1, group = "LocalIncreaseSocketedGemLevelPerFilledSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2503682584] = { "-2 to level of Socketed Skill Gems per Socketed Gem" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", statOrder = { 8106 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels" }, } }, - ["MaximumQualityOverrideUnique__1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 8000 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, - ["RandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again", statOrder = { 9266 }, level = 1, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281809492] = { "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again" }, } }, - ["EnemyElementalResistanceZeroWhenHitUnique__1"] = { affix = "", "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", statOrder = { 6427 }, level = 1, group = "EnemyElementalResistanceZeroWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714446071] = { "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds" }, } }, - ["AvoidMaimChanceUnique__1"] = { affix = "", "You cannot be Maimed", statOrder = { 4952 }, level = 56, group = "AvoidMaimChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["SkeletonAddedChaosDamageShieldUnique__1"] = { affix = "", "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield", statOrder = { 10694 }, level = 1, group = "SkeletonAddedChaosDamageShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1475598909] = { "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "40% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6333 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "40% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__2"] = { affix = "", "(15-30)% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6333 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "(15-30)% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageFromBlockedHitsUnique__1"] = { affix = "", "You take 100% of Elemental Damage from Blocked Hits", statOrder = { 5234 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393355605] = { "You take 100% of Elemental Damage from Blocked Hits" }, } }, - ["SpellAddedChaosDamageMaximumLifeUnique__1"] = { affix = "", "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life", statOrder = { 4552 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life" }, } }, - ["LifeDegenerationGracePeriodUnique__1"] = { affix = "", "Lose 500 Life per second", statOrder = { 1580 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose 500 Life per second" }, } }, - ["SocketedGemsSupportedByLifetapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 330 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["CriticalStrikeMultiplierMonsterPowerUnique__1"] = { affix = "", "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power", statOrder = { 7167 }, level = 1, group = "CriticalStrikeMultiplierMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872107885] = { "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power" }, } }, - ["LeechInstantMonsterPowerUnique__1"] = { affix = "", "5% of Leech from Hits with this Weapon is Instant per Enemy Power", statOrder = { 7168 }, level = 1, group = "LeechInstantMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583648686] = { "5% of Leech from Hits with this Weapon is Instant per Enemy Power" }, } }, - ["GainEnduranceChargeEverySecondUnique__1"] = { affix = "", "Lose an Endurance Charge each second", statOrder = { 6704 }, 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 = { 6707 }, 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 = { 6710 }, level = 1, group = "GainPowerChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521054609] = { "Lose a Power Charge each second" }, } }, - ["CountAsHavingMaxEnduranceFrenzyPowerCharges1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5891, 5891.1, 5891.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 = { 5036 }, level = 1, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2094299742] = { "+(1-10) to maximum Fortification" }, } }, - ["StrikeSkillsFortifyOnHitUnique__1"] = { affix = "", "Melee Hits from Strike Skills Fortify", statOrder = { 10257 }, 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 = { 4893 }, 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 = { 9795 }, level = 1, group = "RageCasterStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell Damage instead of Attack Damage" }, [223497523] = { "" }, } }, - ["GainRageOnManaSpentUnique__1"] = { affix = "", "Gain (7-10) Rage after Spending a total of 200 Mana", statOrder = { 6850 }, 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 = { 6779 }, 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 = { 6642 }, level = 1, group = "FlaskDurationPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [981878473] = { "2% reduced Flask Effect Duration per Level" }, } }, - ["FlaskEffectPerLevelUnique__1"] = { affix = "", "Flasks applied to you have 1% increased Effect per Level", statOrder = { 6643 }, level = 1, group = "FlaskEffectPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3867344930] = { "Flasks applied to you have 1% increased Effect per Level" }, } }, - ["GrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 701, 749 }, level = 1, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636370122] = { "Grants Level 20 Ravenous Skill" }, [4164361381] = { "Enemies display their Monster Category" }, } }, - ["AdditionalSacredWispUnique__1"] = { affix = "", "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned", statOrder = { 5041, 5041.1 }, level = 1, group = "AdditionalSacredWisp", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13590525] = { "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned" }, } }, - ["AttackCriticalStrikesUnnerveUnique__1"] = { affix = "", "Attacks inflict Unnerve on Critical Strike for 4 seconds", statOrder = { 4924 }, level = 1, group = "AttackCriticalStrikesUnnerve", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3362271649] = { "Attacks inflict Unnerve on Critical Strike for 4 seconds" }, } }, - ["SpellCriticalStrikesIntimidateUnique__1"] = { affix = "", "Spells inflict Intimidate on Critical Strike for 4 seconds", statOrder = { 10192 }, level = 1, group = "SpellCriticalStrikesIntimidate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [181229988] = { "Spells inflict Intimidate on Critical Strike for 4 seconds" }, } }, - ["EnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6389 }, level = 1, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [113536037] = { "You and Enemies in your Presence count as moving while affected by Elemental Ailments" }, } }, - ["MinionsHaveChargesYouHaveUnique__1"] = { affix = "", "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you", statOrder = { 9365, 9366, 9366.1 }, level = 1, group = "MinionsHaveChargesYouHave", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3879726065] = { "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you" }, [2797097751] = { "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you" }, } }, - ["AurasOnlyApplyToLinkedTargetUnique__1"] = { affix = "", "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets", statOrder = { 9494, 9494.1 }, level = 1, group = "AurasOnlyApplyToLinkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3678739763] = { "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets" }, } }, - ["AuraEffectWhileLinkedUnique__1"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9493 }, level = 1, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995650818] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target" }, } }, - ["MaximumSpectrePerGhastlyEyeUnique__1"] = { affix = "", "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", statOrder = { 4592 }, level = 1, group = "MaximumSpectrePerGhastlyEye", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1664904679] = { "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel" }, } }, - ["HeraldReservationEfficiencyUnique__1"] = { affix = "", "10% increased Mana Reservation Efficiency of Herald Skills", statOrder = { 7136 }, level = 80, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3078295401] = { "10% increased Mana Reservation Efficiency of Herald Skills" }, } }, - ["UniqueJewelNodeIncreasedLifeUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Life", statOrder = { 8109 }, level = 1, group = "UniqueJewelNodeIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1223932609] = { "Passive Skills in Radius also grant +5 to maximum Life" }, } }, - ["UniqueJewelNodeIncreasedManaUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Mana", statOrder = { 8110 }, level = 1, group = "UniqueJewelNodeIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3382199855] = { "Passive Skills in Radius also grant +5 to maximum Mana" }, } }, - ["UniqueJewelNodeCriticalStrikeChanceUnique__1"] = { affix = "", "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance", statOrder = { 8113 }, level = 1, group = "UniqueJewelNodeCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3901726941] = { "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance" }, } }, - ["UniqueJewelNodeAllAttributesUnique__1"] = { affix = "", "Passive Skills in Radius also grant +2 to all Attributes", statOrder = { 8107 }, level = 1, group = "UniqueJewelNodeAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3587101704] = { "Passive Skills in Radius also grant +2 to all Attributes" }, } }, - ["UniqueJewelNodeChaosResistUnique__1"] = { affix = "", "Passive Skills in Radius also grant +4% to Chaos Resistance", statOrder = { 8108 }, level = 1, group = "UniqueJewelNodeChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1812306107] = { "Passive Skills in Radius also grant +4% to Chaos Resistance" }, } }, - ["UniqueJewelNodePhysicalDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Physical Damage", statOrder = { 8118 }, level = 1, group = "UniqueJewelNodePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3252387974] = { "Passive Skills in Radius also grant 6% increased Physical Damage" }, } }, - ["UniqueJewelNodeFireDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Fire Damage", statOrder = { 8115 }, level = 1, group = "UniqueJewelNodeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [719810173] = { "Passive Skills in Radius also grant 6% increased Fire Damage" }, } }, - ["UniqueJewelNodeColdDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Cold Damage", statOrder = { 8112 }, level = 1, group = "UniqueJewelNodeColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2999571636] = { "Passive Skills in Radius also grant 6% increased Cold Damage" }, } }, - ["UniqueJewelNodeLightningDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Lightning Damage", statOrder = { 8116 }, level = 1, group = "UniqueJewelNodeLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3556460433] = { "Passive Skills in Radius also grant 6% increased Lightning Damage" }, } }, - ["UniqueJewelNodeChaosDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Chaos Damage", statOrder = { 8111 }, level = 1, group = "UniqueJewelNodeChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1313763128] = { "Passive Skills in Radius also grant 6% increased Chaos Damage" }, } }, - ["UniqueJewelNodeArmourUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Armour", statOrder = { 8119 }, level = 1, group = "UniqueJewelNodeArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1647724040] = { "Passive Skills in Radius also grant 7% increased Armour" }, } }, - ["UniqueJewelNodeEvasionUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Evasion Rating", statOrder = { 8114 }, level = 1, group = "UniqueJewelNodeEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3761482453] = { "Passive Skills in Radius also grant 7% increased Evasion Rating" }, } }, - ["UniqueJewelNodeEnergyShieldUnique__1"] = { affix = "", "Passive Skills in Radius also grant 3% increased Energy Shield", statOrder = { 8117 }, level = 1, group = "UniqueJewelNodeEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4215928287] = { "Passive Skills in Radius also grant 3% increased Energy Shield" }, } }, - ["RunecraftingFireDamage"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["RunecraftingColdDamage"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["RunecraftingLightningDamage"] = { affix = "", "(10-20)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-20)% increased Lightning Damage" }, } }, - ["RitualRingPenanceMark"] = { affix = "", "Grants level 20 Penance Mark", statOrder = { 67 }, level = 63, group = "RitualRingPenanceMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [88120117] = { "Grants level 20 Penance Mark" }, } }, - ["RitualRingAffliction"] = { affix = "", "Grants level 20 Affliction", statOrder = { 65 }, level = 63, group = "RitualRingAffliction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3486646279] = { "Grants level 20 Affliction" }, } }, - ["RitualRingPacify"] = { affix = "", "Grants level 20 Pacify", statOrder = { 66 }, level = 63, group = "RitualRingPacify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [913306901] = { "Grants level 20 Pacify" }, } }, - ["RitualRingCastSpeed"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, - ["RitualRingLife"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["RitualRingMana"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["RitualRingEnergyShield"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-60) to maximum Energy Shield" }, } }, - ["KeyStoneRetaliationHitsUnique_1"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10806 }, level = 1, group = "RetaliationHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, - ["ConvertBodyArmourEvasionToWardUnique__1"] = { affix = "", "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour", statOrder = { 10580 }, level = 66, group = "ConvertBodyArmourEvasionToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [767698281] = { "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour" }, } }, - ["BlockIsLuckyUnique__1"] = { affix = "", "Chance to Block is Lucky", statOrder = { 5000 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Lucky" }, } }, - ["BlockIsUnluckyUnique__1"] = { affix = "", "Chance to Block is Unlucky", statOrder = { 5000 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Unlucky" }, } }, - ["GrantsTawhoasChosenUnique__1"] = { affix = "", "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy", statOrder = { 719, 719.1 }, level = 1, group = "GrantsTawhoasChosen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3131535174] = { "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy" }, } }, - ["WarcryAreaOfEffectUnique__1"] = { affix = "", "Warcry Skills have (25-35)% increased Area of Effect", statOrder = { 10573 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (25-35)% increased Area of Effect" }, } }, - ["WarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have (15-25)% increased Area of Effect", statOrder = { 10573 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-25)% increased Area of Effect" }, } }, - ["WarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage", statOrder = { 9446 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage" }, } }, - ["TinctureRemoveToxicityOnKillUnique__1"] = { affix = "", "10% chance to remove 1 Mana Burn on Kill", statOrder = { 5724 }, 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 = { 5389 }, 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 = { 6774 }, 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 = { 1237 }, 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 = { 1237 }, 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 = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(21-25)% increased Physical Damage" }, } }, - ["VillageLocalFireDamage1"] = { affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1367 }, 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 = { 1367 }, 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 = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand1"] = { affix = "", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand2"] = { affix = "", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand3"] = { affix = "", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, - ["VillageLocalColdDamage1"] = { affix = "", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, - ["VillageLocalColdDamage2"] = { affix = "", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, - ["VillageLocalColdDamage3"] = { affix = "", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, - ["VillageLocalLightningDamage1"] = { affix = "", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, - ["VillageLocalLightningDamage2"] = { affix = "", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, - ["VillageLocalLightningDamage3"] = { affix = "", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand1"] = { affix = "", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand2"] = { affix = "", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand3"] = { affix = "", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, - ["VillageLocalChaosDamage1"] = { affix = "", "Adds (7-9) to (14-16) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (14-16) Chaos Damage" }, } }, - ["VillageLocalChaosDamage2"] = { affix = "", "Adds (11-15) to (23-26) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-15) to (23-26) Chaos Damage" }, } }, - ["VillageLocalChaosDamage3"] = { affix = "", "Adds (16-21) to (31-37) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (16-21) to (31-37) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (12-17) to (26-30) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (21-28) to (42-48) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Chaos Damage", statOrder = { 1395 }, 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 = { 2031 }, 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 = { 2031 }, 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 = { 2034 }, 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 = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(20-25)% chance to Freeze" }, } }, - ["VillageChanceToShock"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2038 }, 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 = { 2038 }, 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 = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["VillageManaLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, - ["VillageLocalIncreasedAttackSpeed"] = { affix = "", "(3-6)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-6)% increased Attack Speed" }, } }, - ["VillageLocalCriticalStrikeChance"] = { affix = "", "(5-7)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-7)% increased Critical Strike Chance" }, } }, - ["VillageIncreasedCastSpeed"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["VillageIncreasedCastSpeedTwoHand"] = { affix = "", "(13-18)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-18)% increased Cast Speed" }, } }, - ["VillageSpellCriticalStrikeChance"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["VillageSpellCriticalStrikeChanceTwoHand"] = { affix = "", "(30-35)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-35)% increased Spell Critical Strike Chance" }, } }, - ["VillageWeaponSpellDamage1"] = { affix = "", "(10-19)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage2"] = { affix = "", "(20-29)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage3"] = { affix = "", "(30-39)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand1"] = { affix = "", "(15-29)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand2"] = { affix = "", "(30-44)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand3"] = { affix = "", "(45-59)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } }, - ["VillageMinionDamageOnWeapon1"] = { affix = "", "Minions deal (10-19)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon2"] = { affix = "", "Minions deal (20-29)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon3"] = { affix = "", "Minions deal (30-39)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon1"] = { affix = "", "Minions deal (15-29)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon2"] = { affix = "", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon3"] = { affix = "", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["VillageGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseChaosSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["VillageGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["VillageLocalStunThresholdReduction"] = { affix = "", "(21-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2502 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [832404842] = { "(21-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["VillageAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["VillageLocalIncreaseSocketedMeleeGemLevel"] = { affix = "", "+2 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, - ["VillageAdditionalVaalSoulOnKill"] = { affix = "", "100% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1962922582] = { "100% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VillageLocalChanceToPoisonOnHit"] = { affix = "", "10% chance to Poison on Hit", statOrder = { 8007 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, - ["VillageLocalChanceToBleed"] = { affix = "", "10% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "village_runesmithing_enchant", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, - ["VillageMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["VillageMaximumManaOnKillPercent"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1756 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, - ["VillageCoverInAshOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Ash on Hit", statOrder = { 5898 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [324460247] = { "(10-15)% chance to Cover Enemies in Ash on Hit" }, } }, - ["VillageCoverInFrostOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Frost on Hit", statOrder = { 5902 }, level = 1, group = "CoverInFrostOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3235270673] = { "(10-15)% chance to Cover Enemies in Frost on Hit" }, } }, - ["VillageElusiveOnCriticalStrike"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4286 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["VillageFortifyOnMeleeHit"] = { affix = "", "Melee Hits Fortify", statOrder = { 2269 }, 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 = { 583 }, 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 = { 8136 }, 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 = { 1237, 7932 }, level = 1, group = "LocalElementalDamageNoPhysical", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental" }, tradeHashes = { [385756972] = { "No Physical Damage" }, [692420067] = { "Has (50-100)% increased Elemental Damage" }, } }, - ["VillageLocalPhysicalDamageAddedAsEachElement"] = { affix = "", "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4267 }, 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 = { 7311 }, 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 = { 10190 }, level = 1, group = "SpellCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [1960314688] = { "(10-20)% chance to inflict Corrosion on Hit with Spells" }, } }, - ["VillageAttackFireDamageMaximumMana"] = { affix = "", "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon", statOrder = { 4927 }, level = 1, group = "AttackFireDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [4107994326] = { "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon" }, } }, - ["VillageAttackColdDamageEnergyShield"] = { affix = "", "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", statOrder = { 4926 }, level = 1, group = "AttackColdDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2566313732] = { "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon" }, } }, - ["VillageTemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["VillagePunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6007 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["VillageEnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2518 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["VillageAttackConvertToFire"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Fire Damage", statOrder = { 4884 }, level = 1, group = "AttackConvertToFire", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [796222013] = { "(20-30)% of Attack Physical Damage Converted to Fire Damage" }, } }, - ["VillageAttackConvertToCold"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Cold Damage", statOrder = { 4883 }, level = 1, group = "AttackConvertToCold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2186742030] = { "(20-30)% of Attack Physical Damage Converted to Cold Damage" }, } }, - ["VillageAttackConvertToLightning"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Lightning Damage", statOrder = { 4885 }, level = 1, group = "AttackConvertToLightning", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1188616832] = { "(20-30)% of Attack Physical Damage Converted to Lightning Damage" }, } }, - ["VillageMaximumShock"] = { affix = "", "+10% to Maximum Effect of Shock", statOrder = { 10010 }, level = 1, group = "MaximumShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4264358613] = { "+10% to Maximum Effect of Shock" }, } }, - ["VillageSpellAddedChaosDamageMaximumLife"] = { affix = "", "Spells deal added Chaos Damage equal to 4% of your maximum Life", statOrder = { 4552 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to 4% of your maximum Life" }, } }, - ["VillageRageOnMeleeHit"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6849 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["VillageRageEffect"] = { affix = "", "(7-10)% increased Rage Effect", statOrder = { 9793 }, level = 1, group = "RageEffect", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2194261591] = { "(7-10)% increased Rage Effect" }, } }, - ["VillageAttacksCostLife"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10830 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["VillageAdditionalProjectilesRandomDirection"] = { affix = "", "Skills fire 2 additional Projectiles", "Projectiles are fired in random directions", statOrder = { 1797, 9826 }, level = 1, group = "AdditionalProjectilesRandomDirection", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["VillageAdditionalCurseOnEnemies"] = { affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["VillagePointBlank"] = { affix = "", "Point Blank", statOrder = { 10800 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["VillagePlayerFarShot"] = { affix = "", "Far Shot", statOrder = { 10826 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["VillageIronGrip"] = { affix = "", "Iron Grip", statOrder = { 10815 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["VillageIronWill"] = { affix = "", "Iron Will", statOrder = { 10828 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["VillageGainMagicMonsterModsOnKill"] = { affix = "", "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6772 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3976991498] = { "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["VillageLocalLifeLeechIsInstant"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2542 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["VillageLocalManaLeechIsInstant"] = { affix = "", "Mana Leech from Hits with this Weapon is Instant", statOrder = { 7995 }, level = 1, group = "LocalManaLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [3287200156] = { "Mana Leech from Hits with this Weapon is Instant" }, } }, - ["VillageESLeechFromAttacksNotRemovedOnFullES"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6441 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, - ["VillageReturningProjectiles"] = { affix = "", "Attack Projectiles Return to you", statOrder = { 2829 }, level = 1, group = "ReturningAttackProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, - ["VillageLocalChanceForPoisonDamage"] = { affix = "", "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "village_runesmithing_enchant", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageLocalChanceForBleedingDamage"] = { affix = "", "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "village_runesmithing_enchant", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageFireExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3602667353] = { "(15-25)% chance to inflict Fire Exposure on Hit" }, } }, - ["VillageColdExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2630708439] = { "(15-25)% chance to inflict Cold Exposure on Hit" }, } }, - ["VillageLightningExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 1, group = "LightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4265906483] = { "(15-25)% chance to inflict Lightning Exposure on Hit" }, } }, - ["VillageExertedAttackDamage"] = { affix = "", "Exerted Attacks deal (80-100)% increased Damage", statOrder = { 6361 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (80-100)% increased Damage" }, } }, - ["VillageEnemiesDestroyedOnKill"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6380 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["VillageChanceToImpaleWithSpells"] = { affix = "", "(10-15)% chance to Impale on Spell Hit", statOrder = { 10191 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster" }, tradeHashes = { [3094222195] = { "(10-15)% chance to Impale on Spell Hit" }, } }, - ["VillageBlockWhileDualWielding"] = { affix = "", "+(6-8)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block", "village_runesmithing_enchant" }, tradeHashes = { [2166444903] = { "+(6-8)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["VillageAggravateBleedOnAttack"] = { affix = "", "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 1, group = "AggravateBleedOnAttack", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2705185939] = { "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["VillagePoisonDuration"] = { affix = "", "(15-25)% increased Poison Duration", statOrder = { 3175 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-25)% increased Poison Duration" }, } }, - ["VillageSpellChanceToBlind"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Spells", statOrder = { 10186 }, level = 1, group = "SpellChanceToBlind", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1012291104] = { "(10-20)% chance to Blind Enemies on Hit with Spells" }, } }, - ["VillageWardRestoreChance"] = { affix = "", "(5-10)% chance to Restore your Ward on Hit", statOrder = { 9925 }, level = 1, group = "WardRestoreChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1925110785] = { "(5-10)% chance to Restore your Ward on Hit" }, } }, - ["VillageMarkedEnemyNoBlockSuppress"] = { affix = "", "Your Hits against Marked Enemy cannot be Blocked or Suppressed", statOrder = { 7162 }, level = 1, group = "MarkedEnemyNoBlockSuppress", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3548778396] = { "Your Hits against Marked Enemy cannot be Blocked or Suppressed" }, } }, - ["VillageArcaneSurgeOnLifeSpent"] = { affix = "", "Gain Arcane Surge after Spending a total of 200 Life", statOrder = { 6729 }, level = 1, group = "ArcaneSurgeOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3204560615] = { "Gain Arcane Surge after Spending a total of 200 Life" }, } }, - ["VillageOnslaughtOnManaSpent"] = { affix = "", "Gain Onslaught after Spending a total of 200 Mana", statOrder = { 6789 }, level = 1, group = "OnslaughtOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [351890141] = { "Gain Onslaught after Spending a total of 200 Mana" }, } }, - ["VillageCriticalAilmentDamageOverTimeMultiplier"] = { affix = "", "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes", statOrder = { 1249 }, level = 1, group = "CriticalAilmentDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1781630546] = { "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes" }, } }, - ["VillageWeaponIgnoreElementalResistance"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4851 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["VillageLocalMeleeWeaponRange"] = { affix = "", "+2 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [350598685] = { "+2 metres to Weapon Range" }, } }, - ["VillageChaosDamageLuck"] = { affix = "", "Chaos Damage with Hits is Lucky", statOrder = { 5736 }, level = 1, group = "ChaosDamageLuck", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2678511347] = { "Chaos Damage with Hits is Lucky" }, } }, - ["VillageGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["VillageExplosionConflux"] = { affix = "", "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds", statOrder = { 6747 }, level = 1, group = "ExplosionConflux", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3581844317] = { "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds" }, } }, - ["VillageKeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["VillageElementalDamagePercentAddedAsChaos"] = { affix = "", "Gain (7-10)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-10)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["VillageMeleeAttacksUsableWithoutLife"] = { affix = "", "Insufficient Life doesn't prevent your Melee Attacks", statOrder = { 9189 }, level = 1, group = "MeleeAttacksUsableWithoutLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2461005744] = { "Insufficient Life doesn't prevent your Melee Attacks" }, } }, - ["VillageEnduranceChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "village_runesmithing_enchant" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["VillageFrenzyChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "village_runesmithing_enchant" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["VillagePowerChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "village_runesmithing_enchant" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, - ["VillageUnholyMightOnCrit"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2922 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["VillageMaximumGolems"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["VillageIncreasedGold"] = { affix = "", "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [253956903] = { "5% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["VillageMeleeSplash"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1173 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["VillageDamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["VillageConvertColdToChaos"] = { affix = "", "(20-25)% of Cold Damage Converted to Chaos Damage", statOrder = { 1974 }, level = 1, group = "ConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2379258771] = { "(20-25)% of Cold Damage Converted to Chaos Damage" }, } }, - ["VillageAlternatingShrineBuff"] = { affix = "", "Gain a random shrine buff every 10 seconds", statOrder = { 6823 }, level = 1, group = "AlternatingShrineBuff", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2284520710] = { "Gain a random shrine buff every 10 seconds" }, } }, - ["VillageSummonPhantasmOnCorpseConsume"] = { affix = "", "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse", statOrder = { 823 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3252082366] = { "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse" }, } }, - ["VillageMinionDamageAlsoAffectsYou"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3756 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["VillageFireDamagePerResistanceAbove75"] = { affix = "", "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6570 }, level = 1, group = "FireDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, tradeHashes = { [3013187834] = { "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%" }, } }, - ["VillageSuppressChanceEmptyOffhand"] = { affix = "", "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10178 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2076926581] = { "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["VillageShepherdOfSouls"] = { affix = "", "Shepherd of Souls", statOrder = { 10812 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["VillageFireBurstOnHit"] = { affix = "", "Cast Level 10 Fire Burst on Hit", statOrder = { 7893 }, level = 1, group = "FireBurstOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1606553462] = { "Cast Level 10 Fire Burst on Hit" }, } }, - ["VillageBurningEnemiesExplode"] = { affix = "", "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrder = { 6517 }, level = 1, group = "BurningEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" }, } }, - ["VillageLightningStrikesOnCrit"] = { affix = "", "Trigger Level 5 Lightning Bolt when you deal a Critical Strike", statOrder = { 777 }, level = 1, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 5 Lightning Bolt when you deal a Critical Strike" }, } }, - ["VillageShockedGroundOnHit"] = { affix = "", "Trigger Level 10 Shock Ground on Hit", statOrder = { 775 }, level = 1, group = "ShockedGroundOnHitSkill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2845525306] = { "Trigger Level 10 Shock Ground on Hit" }, } }, - ["VillageShockNearbyEnemyOnShockedKill"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2819 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["VillageIgniteNearbyEnemyOnIgnitedKill"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2820 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["VillageSummonWolfOnKillOld"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 796 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["VillageCullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["VillageConsumeCorpseLifeRecovery"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life", statOrder = { 5868 }, level = 1, group = "ConsumeCorpseLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life" }, } }, - ["VillageSummonRagingSpiritOnKill"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 789 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["VillageMinionBurningCloudOnDeath"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second", statOrder = { 9308 }, level = 1, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second" }, } }, - ["VillageAuraAddedLightningDamagePerBlueSocket"] = { affix = "", "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket", statOrder = { 3013 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket" }, } }, - ["VillageStalkingPustuleOnKill"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 822 }, level = 1, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["VillageGrantsEnvy"] = { affix = "", "Grants Level 1 Envy Skill", statOrder = { 660 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [52953650] = { "Grants Level 1 Envy Skill" }, } }, - ["VillageGrantsIcicleNovaTrigger"] = { affix = "", "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 816 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["VillageSpreadChilledGroundOnFreeze"] = { affix = "", "(10-15)% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3412 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "(10-15)% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["VillageSpreadConsecratedGroundOnShatter"] = { affix = "", "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy", statOrder = { 4132 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4148932984] = { "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy" }, } }, - ["VillageColdAddedAsFireFrozenEnemy"] = { affix = "", "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5808 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1383929411] = { "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["VillageCurseOnHitElementalWeakness"] = { affix = "", "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit", statOrder = { 2521 }, 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 = { 5706 }, 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 = { 9299 }, 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 = { 8021 }, level = 60, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [2036151955] = { "" }, [3591112611] = { "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown" }, } }, - ["BannerResourceGainedUnique__1"] = { affix = "", "(25-50)% increased Valour gained", statOrder = { 4981 }, level = 1, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050359418] = { "(25-50)% increased Valour gained" }, } }, - ["CannotGainPowerChargesUnique__1"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5440 }, level = 1, group = "CannotGainPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["CannotGainEnduranceChargesUnique__2"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 5003 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, - ["KeystoneBloodsoakedBladeUnique__1"] = { affix = "", "Bloodsoaked Blade", statOrder = { 10817 }, level = 1, group = "BloodsoakedBlade", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2363616962] = { "Bloodsoaked Blade" }, } }, - ["MaximumEnduranceFrenzyPowerChargesIs0Unique__1"] = { affix = "", "Maximum Endurance, Frenzy and Power Charges is 0", statOrder = { 9135 }, level = 1, group = "MaximumEnduranceFrenzyPowerChargesIs0", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge" }, tradeHashes = { [2957871460] = { "Maximum Endurance, Frenzy and Power Charges is 0" }, } }, - ["VillageTripleEnchant1H"] = { affix = "", "Can be Enchanted by a Kalguuran Runesmith", "Can have 2 additional Runesmithing Enchantments", "Can be Runesmithed as though it were all One Handed Melee Weapon Types", statOrder = { 4443, 7872, 7873 }, level = 1, group = "VillageTripleEnchant1H", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1045438865] = { "Can have 2 additional Runesmithing Enchantments" }, [4005027470] = { "Can be Enchanted by a Kalguuran Runesmith" }, [3221277412] = { "Can be Runesmithed as though it were all One Handed Melee Weapon Types" }, } }, - ["ExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6510 }, level = 97, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2765129230] = { "Excommunicate Enemies on Melee Hit for 3 seconds" }, } }, - ["MeleeCritChanceAgainstExcommunicatedUnique__1"] = { affix = "", "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies", statOrder = { 9187 }, level = 1, group = "MeleeCritChanceAgainstExcommunicated", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4154636328] = { "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies" }, } }, - ["AttackDamageIfHitRecentlyUnique"] = { affix = "", "(20-40)% increased Attack Damage if you've been Hit Recently", statOrder = { 3538 }, level = 98, group = "AttackDamageIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [871414818] = { "(20-40)% increased Attack Damage if you've been Hit Recently" }, } }, - ["AttackCritAfterBeingCritUnique"] = { affix = "", "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes", statOrder = { 4655 }, level = 98, group = "AttackCritAfterBeingCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [276813598] = { "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes" }, } }, - ["WarcryLifeCostUnique"] = { affix = "", "Warcries Cost +15% of Life", statOrder = { 10559 }, level = 75, group = "WarcryLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1427553227] = { "Warcries Cost +15% of Life" }, } }, - ["NoCooldownWarcriesUnique"] = { affix = "", "Non-Instant Warcries ignore their Cooldown when Used", statOrder = { 9508 }, level = 75, group = "NoCooldownWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1863128284] = { "Non-Instant Warcries ignore their Cooldown when Used" }, } }, - ["ExtremelyLuckyUnique"] = { affix = "", "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two", statOrder = { 6544, 6544.1 }, level = 1, group = "ExtremeLuck", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [675784826] = { "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two" }, } }, - ["ProjectileAvoidUnique"] = { affix = "", "(1-10)% chance to avoid Projectiles", statOrder = { 4998 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "(1-10)% chance to avoid Projectiles" }, } }, - ["MistyFootprintsUnique"] = { affix = "", "Misty Footprints", statOrder = { 10857 }, level = 1, group = "MistyFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2519043677] = { "Misty Footprints" }, } }, - ["ArcaneSurgeMovementSpeedUnique"] = { affix = "", "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", statOrder = { 4446 }, level = 68, group = "ArcaneSurgeMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [103999915] = { "Increases to Cast Speed from Arcane Surge also applies to Movement Speed" }, } }, - ["ArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4444 }, level = 68, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3221795893] = { "Gain Arcane Surge when you use a Movement Skill" }, } }, - ["ArcaneSurgeEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3015437071] = { "(30-50)% increased Effect of Arcane Surge on you" }, } }, - ["StarfellOnMeleeCriticalHitUnique__1"] = { affix = "", "Trigger Level 20 Starfall on Melee Critical Strike", statOrder = { 788 }, level = 85, group = "StarfellOnMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1505174316] = { "Trigger Level 20 Starfall on Melee Critical Strike" }, } }, - ["InfluenceElementalConfluxUnique__1"] = { affix = "", "You have Elemental Conflux if the stars are aligned", statOrder = { 4064 }, 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 = { 5015 }, 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 = { 5016 }, 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 = { 736 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [658873122] = { "Trigger Level 20 Summon Void Spawn every 4 seconds" }, } }, - ["ExtraChaosDamagePerVoidSpawnUnique__1"] = { affix = "", "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", statOrder = { 9486 }, 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 = { 6098 }, 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 = { 10486 }, level = 1, group = "UnarmedStrikeSkillsAdditionalTarget", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3383195220] = { "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy" }, } }, - ["UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks", statOrder = { 10487 }, level = 97, group = "UnarmedMeleeAttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [468580269] = { "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks" }, } }, - ["MovementVelocityUnique__55"] = { affix = "", "(1-7)% increased Movement Speed", statOrder = { 1803 }, level = 97, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-7)% increased Movement Speed" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__38"] = { affix = "", "(100-777)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 97, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-777)% increased Evasion and Energy Shield" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(1-7)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3576 }, level = 97, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(1-7)% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["UnarmedMoreMeleeAttackSpeedUnique__1"] = { affix = "", "(1-7)% more Attack Speed with Unarmed Melee Attacks", statOrder = { 1435 }, level = 97, group = "UnarmedMoreMeleeAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [906039557] = { "(1-7)% more Attack Speed with Unarmed Melee Attacks" }, } }, - ["DoubleMinionLimitsUnique_1"] = { affix = "", "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons", statOrder = { 9177, 9177.1 }, level = 100, group = "DoubleMinionLimitsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56473917] = { "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons" }, } }, - ["TargetsUnaffectedByYourHexesUnique__1"] = { affix = "", "Targets are Unaffected by your Hexes", statOrder = { 2604 }, level = 40, group = "TargetsUnaffectedByYourHexes", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2325471503] = { "Targets are Unaffected by your Hexes" }, } }, - ["EatSoulAfterHexPercentCurseExpireUnique__1"] = { affix = "", "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", statOrder = { 6293 }, level = 40, group = "EatSoulAfterHexPercentCurseExpire", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [224931623] = { "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power" }, } }, - ["RecoverLifePercentOnBlockUnique__1"] = { affix = "", "Lose (3-5)% of Life when you Block", statOrder = { 3065 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Lose (3-5)% of Life when you Block" }, } }, - ["BlockChancePerLifeSpentRecentlyUnique__1"] = { affix = "", "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently", statOrder = { 5232 }, level = 1, group = "BlockChancePerLifeSpentRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2171886867] = { "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" }, } }, - ["CanOnlyInflictWitherAgainstFullLifeEnemies__1"] = { affix = "", "Cannot Inflict Wither on targets that are not on Full Life", statOrder = { 5393 }, level = 1, group = "CanOnlyInflictWitherAgainstFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [340591537] = { "Cannot Inflict Wither on targets that are not on Full Life" }, } }, - ["ApplyMaximumWitherOnChaosSkillHitUnique__1"] = { affix = "", "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds", statOrder = { 4701 }, level = 38, group = "ApplyMaximumWitherOnChaosSkillHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2676773112] = { "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds" }, } }, - ["UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1"] = { affix = "", "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100", statOrder = { 10485 }, level = 1, group = "UnarmedAddedChaosDamageForEachPoisonOnTarget", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3382196041] = { "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100" }, } }, - ["LessPoisonDurationUnique_1"] = { affix = "", "(50-60)% less Poison Duration", statOrder = { 3176 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "(50-60)% less Poison Duration" }, } }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(40-50)% chance to Poison on Hit with Attacks", statOrder = { 3180 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(40-50)% chance to Poison on Hit with Attacks" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt_1"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["GainOnslaughtDuringLifeFlaskUnique__1"] = { affix = "", "[DNT] You have Onslaught during Effect of any Life Flask", statOrder = { 6784 }, level = 1, group = "GainOnslaughtDuringLifeFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [629617314] = { "[DNT] You have Onslaught during Effect of any Life Flask" }, } }, - ["OvercappedFireResistanceAsFirePrenetrationUnique__1"] = { affix = "", "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", statOrder = { 2987 }, level = 100, group = "OvercappedFireResistanceAsFirePrenetration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [133804429] = { "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%" }, } }, - ["FireDamageOnSkillUseUnique__1"] = { affix = "", "Take (300-500) Fire Damage when you Use a Skill", statOrder = { 2217 }, level = 100, group = "FireDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4076381228] = { "Take (300-500) Fire Damage when you Use a Skill" }, } }, - ["MinionHaveNoAmourOrEnergyShieldUnique__1"] = { affix = "", "[DNT] Your minions have no Armour or Maximum Energy Shield", statOrder = { 9362 }, level = 1, group = "MinionHaveNoAmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4060457653] = { "[DNT] Your minions have no Armour or Maximum Energy Shield" }, } }, - ["MinionGainYourSpellSuppressUnique__1"] = { affix = "", "[DNT] Your minions gain your chance to Suppress Spell Damage", statOrder = { 9356 }, level = 1, group = "MinionGainYourSpellSuppress", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3888619765] = { "[DNT] Your minions gain your chance to Suppress Spell Damage" }, } }, - ["AllResistancesReducedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] -2% to All Resistances per Minion", statOrder = { 4638 }, level = 1, group = "MinionCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [1456627145] = { "[DNT] -2% to All Resistances per Minion" }, } }, - ["GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] +(3-5)% to Global Defenses per Minion", statOrder = { 6880 }, level = 1, group = "MinionCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [2408967970] = { "[DNT] +(3-5)% to Global Defenses per Minion" }, } }, - ["AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "-2% to all Resistances per Minion from your Non-Vaal Skills", statOrder = { 1642 }, level = 1, group = "NonVaalMinionSkillCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2894273152] = { "-2% to all Resistances per Minion from your Non-Vaal Skills" }, } }, - ["GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "(3-4)% increased Defences per Minion from your Non-Vaal Skills", statOrder = { 2839 }, level = 1, group = "NonVaalMinionSkillCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [3169460653] = { "(3-4)% increased Defences per Minion from your Non-Vaal Skills" }, } }, - ["MinionsGainPercentOfYourResistancesUnique_1"] = { affix = "", "Minions gain added Resistances equal to 50% of your Resistances", statOrder = { 9355 }, level = 93, group = "MinionsGainYourResistancesPercent", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2370748292] = { "Minions gain added Resistances equal to 50% of your Resistances" }, } }, - ["SacrificeLifeToGainArrowUnique__1"] = { affix = "", "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed", statOrder = { 9952 }, level = 1, group = "SacrificeLifeToGainArrow", weightKey = { }, weightVal = { }, modTags = { "bow", "attack" }, tradeHashes = { [2868019709] = { "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed" }, } }, - ["ArmourFromShieldDoubledUnique__1"] = { affix = "", "Armour from Equipped Shield is doubled", statOrder = { 1998 }, level = 40, group = "ArmourFromShieldDoubled", weightKey = { }, weightVal = { }, modTags = { "shield", "defences", "armour" }, tradeHashes = { [651387761] = { "Armour from Equipped Shield is doubled" }, } }, - ["GainNoArmourFromBodyArmourUnique__1"] = { affix = "", "Gain no Armour from Equipped Body Armour", statOrder = { 3343 }, level = 40, group = "GainNoArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "body_armour", "defences", "armour" }, tradeHashes = { [2150125858] = { "Gain no Armour from Equipped Body Armour" }, } }, - ["EnergyShieldRechargeApplyToManaUnique__1"] = { affix = "", "[DNT] Energy Shield Recharge instead applies to Mana", statOrder = { 6450 }, level = 1, group = "EnergyShieldRechargeApplyToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1572347373] = { "[DNT] Energy Shield Recharge instead applies to Mana" }, } }, - ["GrantShaperSkill_1"] = { affix = "", "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", statOrder = { 748, 748.1 }, level = 85, group = "GrantShaperSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367775264] = { "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory" }, } }, - ["MaximumRemembranceUnique_1"] = { affix = "", "Maximum 10 Remembrance", statOrder = { 9130 }, level = 85, group = "MaximumRemembrance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469876297] = { "Maximum 10 Remembrance" }, } }, - ["RemembranceGainedPerEnergyShieldUnique_1"] = { affix = "", "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned", statOrder = { 6744, 6744.1 }, level = 85, group = "RemembrancePerEnergyShieldSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [410922651] = { "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned" }, } }, - ["Maximum2OfSameTotemUnique__1"] = { affix = "", "You cannot have more than 2 Summoned Totems of the same type", statOrder = { 2262 }, level = 78, group = "Maximum2OfSameTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1121911611] = { "You cannot have more than 2 Summoned Totems of the same type" }, } }, - ["ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1"] = { affix = "", "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue", statOrder = { 8178, 8178.1 }, level = 70, group = "ManaFlaskEffectsAreNotRemovedAtFullMana", weightKey = { }, weightVal = { }, modTags = { "mana_flask", "flask", "resource", "mana" }, tradeHashes = { [1548467016] = { "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue" }, } }, - ["CannotUseLifeFlaskUnique__1"] = { affix = "", "Can't use Life Flasks", statOrder = { 77 }, level = 70, group = "CannotUseLifeFlask", weightKey = { }, weightVal = { }, modTags = { "life_flask", "flask" }, tradeHashes = { [3283268320] = { "Can't use Life Flasks" }, } }, - ["FlaskEffectAlsoAffectsArcaneSurgeUnique__1"] = { affix = "", "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value", statOrder = { 4605, 4605.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 = { 4709 }, 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 = { 9463, 9463.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 = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-180)% increased Physical Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__2"] = { affix = "", "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2940 }, 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 = { 1469 }, 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 = { 366 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, } }, - ["PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently", statOrder = { 9624, 9624.1 }, level = 1, group = "PhysicalAddedAsFireIfUsedRubyFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [128992179] = { "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently" }, } }, - ["PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently", statOrder = { 9622, 9622.1 }, level = 1, group = "PhysicalAddedAsColdIfUsedSapphireFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4015395070] = { "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently" }, } }, - ["PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently", statOrder = { 9626, 9626.1 }, level = 1, group = "PhysicalAddedAsLightningIfUsedTopazFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [270706555] = { "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently" }, } }, - ["PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1"] = { affix = "", "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently", statOrder = { 9621, 9621.1 }, level = 1, group = "PhysicalAddedAsChaosIfUsedAmethystFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [2417314413] = { "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently" }, } }, - ["TripleDamageIfSpentTimeOnAttackRecentlyUnique__1"] = { affix = "", "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently", statOrder = { 6151 }, 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 = { 1885 }, 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 = { 5054 }, 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 = { 1394 }, level = 93, group = "AttacksGainMinMaxAddedChaosDamageBasedOnMana", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos", "attack" }, tradeHashes = { [3795467298] = { "0 to (20-25) Added Attack Chaos Damage per 100 Maximum Mana" }, [3795240942] = { "(5-10) to 0 Added Attack Chaos Damage per 100 Maximum Mana" }, } }, - ["AddedEnergyShieldFlatUnique_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1563 }, 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 = { 1585 }, 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 = { 1564 }, 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 = { 1646 }, 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 = { 7351 }, level = 1, group = "LifeDegenPermyriadPerMinutePerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3458251673] = { "Lose 0.3% Life per Second per Minion" }, } }, - ["IgniteDealNoDamageUnique__1"] = { affix = "", "Ignites you inflict deal no Damage", statOrder = { 7210 }, 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 = { 795 }, level = 1, group = "TriggerIgnitionBlastOnIgnitedEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [748455470] = { "" }, [2637583625] = { "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you" }, } }, - ["KeystoneEldritchBatteryUnique__3"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, 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 = { 1613 }, 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 = { 1613 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(-1-1) to Level of all Spell Skill Gems" }, } }, - ["IncreasedCastSpeedUniqueStaff_1"] = { affix = "", "(25-40)% increased Cast Speed", statOrder = { 1451 }, level = 85, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-40)% increased Cast Speed" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBody_1"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1565 }, level = 97, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["ChaosResistUniqueBody_1"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1646 }, level = 97, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["SpellBlockChancePerMinionUnique__1"] = { affix = "", "[DNT] +2% Chance to Block Spell Damage per Minion", statOrder = { 10129 }, level = 1, group = "SpellBlockChancePerMinion", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2787823479] = { "[DNT] +2% Chance to Block Spell Damage per Minion" }, } }, - ["AggressiveMinionIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] Minions are Aggressive if you've Blocked Recently", statOrder = { 9271 }, level = 1, group = "AggressiveMinionIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1521135197] = { "[DNT] Minions are Aggressive if you've Blocked Recently" }, } }, - ["FeedingFrenzyIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] You have Feeding Frenzy if you've Blocked Recently", statOrder = { 10661 }, level = 1, group = "FeedingFrenzyIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2925106620] = { "[DNT] You have Feeding Frenzy if you've Blocked Recently" }, } }, - ["AdditionalTotemsUniqueScepter_1"] = { affix = "", "+(3-5) to maximum number of Summoned Totems", statOrder = { 2259 }, level = 78, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+(3-5) to maximum number of Summoned Totems" }, } }, - ["BattlemageKeystoneUnique__5"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 78, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SummonTotemCastSpeedUnique__3"] = { affix = "", "(40-70)% increased Totem Placement speed", statOrder = { 2583 }, level = 78, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(40-70)% increased Totem Placement speed" }, } }, - ["LocalAddedPhysicalDamageUnique__38"] = { affix = "", "Adds (60-85) to (100-133) Physical Damage", statOrder = { 1281 }, level = 78, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-85) to (100-133) Physical Damage" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourUniqueHelmetStrInt_2"] = { affix = "", "(350-650)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-650)% increased Armour" }, } }, - ["IncreasedManaUniqueHelmetStrInt_1"] = { affix = "", "+(30-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-70) to maximum Mana" }, } }, - ["ManaRegenerationUniqueHelmetStrInt_1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["AdditionalProjectilesUniqueWand_1"] = { affix = "", "Skills fire (2-3) additional Projectiles", statOrder = { 1797 }, level = 42, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire (2-3) additional Projectiles" }, } }, - ["ProjectilesExpireOnHitUniqueWand_1"] = { affix = "", "Projectiles cannot continue after colliding with targets", statOrder = { 9740 }, level = 42, group = "ProjectilesExpireOnHitv2", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1732165753] = { "Projectiles cannot continue after colliding with targets" }, } }, - ["IncreasedProjectileDamageUnique___12"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2001 }, level = 42, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["ProjectileSpeedUnique__9"] = { affix = "", "(10-20)% increased Projectile Speed", statOrder = { 1801 }, level = 42, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-20)% increased Projectile Speed" }, } }, - ["GlobalChaosSpellGemsLevelUniqueWand_1"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["IncreasedChaosDamageUniqueWand_1"] = { affix = "", "(31-43)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-43)% increased Chaos Damage" }, } }, - ["NoManaRegenerationUniqueHelmetInt_1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2277 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["GlobalNoEnergyShieldUnique__2"] = { affix = "", "Removes all Energy Shield", statOrder = { 2171 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["MaximumManaUnique__9"] = { affix = "", "(20-40)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-40)% increased maximum Mana" }, } }, - ["DamageTakenFromManaUniqueHelmet_1"] = { affix = "", "(20-30)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(20-30)% of Damage is taken from Mana before Life" }, } }, - ["ChanceToIgniteUnique__7"] = { affix = "", "(10-20)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-20)% chance to Ignite" }, } }, - ["GlobalAddedFireDamageUnique__5"] = { affix = "", "Adds (1-5) to (10-15) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (1-5) to (10-15) Fire Damage" }, } }, - ["FireResistanceUniqueGlovesInt_1"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["FlaskDurationUniqueGlovesDex_1"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["FlaskLifeRecoveryUniqueGlovesDex_1"] = { affix = "", "(-100-50)% reduced Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(-100-50)% reduced Life Recovery from Flasks" }, } }, - ["LocalIncreasedEvasionRatingUniqueGlovesDex_1"] = { affix = "", "+(20-45) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-45) to Evasion Rating" }, } }, - ["DexterityUniqueGlovesDex_1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["IgnitesReflectedToSelfUnique__1"] = { affix = "", "Ignites you cause are reflected back to you", statOrder = { 3044 }, level = 1, group = "IgnitesReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1049974046] = { "Ignites you cause are reflected back to you" }, } }, - ["UnaffectedByIgniteUnique__1"] = { affix = "", "Unaffected by Ignite", statOrder = { 10472 }, level = 1, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, - ["CannotPoisonEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Cannot Poison Enemies with at least 12 Poisons on them", statOrder = { 5446 }, level = 1, group = "CannotPoisonEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos" }, tradeHashes = { [1833990055] = { "Cannot Poison Enemies with at least 12 Poisons on them" }, } }, - ["WitherOnHitEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them", statOrder = { 8137 }, level = 1, group = "WitherOnHitEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4202723071] = { "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them" }, } }, - ["ApplyAdditionalPoisonUnique__1"] = { affix = "", "100% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4590 }, level = 1, group = "ApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [514698677] = { "100% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["LocalApplyAdditionalPoisonUnique__1"] = { affix = "", "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon", statOrder = { 8005, 8005.1 }, level = 1, group = "LocalApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2087599022] = { "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon" }, } }, - ["SacrificeMinionToFireAdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow", statOrder = { 9953 }, level = 69, group = "SacrificeMinionToFireAdditionalArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [151300265] = { "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow" }, } }, - ["AdditionalPoisonChanceUnique__1"] = { affix = "", "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4590 }, level = 100, group = "AdditionalPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [514698677] = { "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["ImpaleEffectPerImpaleOnYouUnique__1"] = { affix = "", "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you", statOrder = { 7249 }, level = 1, group = "ImpaleEffectPerImpaleOnYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3824925104] = { "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you" }, } }, - ["SpellLightningDamagePerIntelligenceUnique__1"] = { affix = "", "1 to (31-53) Spell Lightning Damage per 10 Intelligence", statOrder = { 10123 }, level = 83, group = "SpellLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [254155233] = { "1 to (31-53) Spell Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedSkillCostUnique_1"] = { affix = "", "31% increased Cost of Skills", statOrder = { 1886 }, level = 1, group = "SkillCostReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2904711338] = { "31% increased Cost of Skills" }, } }, - ["ViolentPaceUnique__1"] = { affix = "", "[DNT] Triggers Level 20 Violent Path when Equipped", statOrder = { 6257 }, level = 1, group = "ViolentPace", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3000633332] = { "[DNT] Triggers Level 20 Violent Path when Equipped" }, } }, - ["AreaOfEffectPerRageUnique__1"] = { affix = "", "[DNT] (5-10)% increased Area of Effect per 10 Rage", statOrder = { 4727 }, level = 1, group = "AreaOfEffectPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878076855] = { "[DNT] (5-10)% increased Area of Effect per 10 Rage" }, } }, - ["MinionMovementSpeedUnique_1"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionAttackSpeedUnique_1"] = { affix = "", "Minions have (6-12)% increased Attack Speed", statOrder = { 2912 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (6-12)% increased Attack Speed" }, [4000101551] = { "" }, } }, - ["MinionDoubleDamageChancePerFortificationUnique__1"] = { affix = "", "Minions have 1% chance to deal Double Damage per Fortification on you", statOrder = { 1981 }, level = 1, group = "MinionDoubleDamageChancePerFortification", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1793564431] = { "Minions have 1% chance to deal Double Damage per Fortification on you" }, } }, - ["MinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value", statOrder = { 3759 }, level = 83, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3942379359] = { "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value" }, } }, - ["FortifyDurationUnique_1"] = { affix = "", "(30-40)% increased Fortification Duration", statOrder = { 2270 }, level = 1, group = "FortifyDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966206079] = { "(30-40)% increased Fortification Duration" }, } }, - ["TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1"] = { affix = "", "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 757 }, level = 97, group = "TriggerSocketedSpellOnUnarmedMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181232657] = { "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["LinkSkillsCostLifeUnique__1"] = { affix = "", "[DNT] Link Skills Cost Life instead of Mana", statOrder = { 7493 }, level = 1, group = "LinkSkillsCostLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2332188930] = { "[DNT] Link Skills Cost Life instead of Mana" }, } }, - ["GuardSkillForLinkTargetUnique__1"] = { affix = "", "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you", statOrder = { 6923 }, level = 1, group = "GuardSkillForLinkTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3674946347] = { "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you" }, } }, - ["LinksTargetDamageableMinionsUnique_1"] = { affix = "", "Link Skills can target Damageable Minions", statOrder = { 7503 }, 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 = { 7508 }, 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 = { 7509 }, 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 = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueQuiver10"] = { affix = "", "(5-10) to (12-24) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, 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 = { 1978 }, 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 = { 1187 }, level = 69, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_2"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1187 }, level = 20, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_3"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1187 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["IncreasedAttackSpeedUniqueQuiver10"] = { affix = "", "(7-14)% increased Attack Speed", statOrder = { 1415 }, level = 69, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-14)% increased Attack Speed" }, } }, - ["IncreasedLifeUniqueQuiver21"] = { affix = "", "+(75-200) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-200) to maximum Life" }, } }, - ["ProjectileSpeedUnique__10"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueQuiver21"] = { affix = "", "Gain (5-10) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-10) Life per Enemy Hit with Attacks" }, } }, - ["LocalIncreasedEnergyShieldUnique__13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__34"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["DexterityUnique__33"] = { affix = "", "+(20-35) to Dexterity", statOrder = { 1183 }, level = 100, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-35) to Dexterity" }, } }, - ["ChaosResistUnique__32"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1646 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["AllResistancesUnique_1"] = { affix = "", "-(30-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 100, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(30-20)% to all Elemental Resistances" }, } }, - ["ReducedFireResistanceUnique__2"] = { affix = "", "(65-75)% reduced Fire Resistance", statOrder = { 1633 }, level = 100, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(65-75)% reduced Fire Resistance" }, } }, - ["FireDamagePercentUnique__13"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1362 }, level = 100, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__14"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1362 }, level = 41, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__15"] = { affix = "", "(90-110)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-110)% increased Fire Damage" }, } }, - ["InflictFireExposureNearbyOnMaxRageUnique_1"] = { affix = "", "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage", statOrder = { 7280 }, level = 1, group = "InflictFireExposureNearbyOnMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [4244612288] = { "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" }, } }, - ["NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1"] = { affix = "", "Nearby Enemies have Fire Exposure while at maximum Rage", statOrder = { 9458 }, level = 1, group = "NearbyEnemiesFireExposureWhileMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3952509108] = { "Nearby Enemies have Fire Exposure while at maximum Rage" }, } }, - ["FireDoTMultiPerRageUnique_1"] = { affix = "", "Each Rage also grants +2% to Fire Damage Over Time Multiplier", statOrder = { 6583 }, level = 1, group = "FireDoTMultiPerRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3947934765] = { "Each Rage also grants +2% to Fire Damage Over Time Multiplier" }, } }, - ["LocalFireDamageFromLifePercentUnique_1"] = { affix = "", "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life", statOrder = { 2950 }, level = 1, group = "WeaponAddedFireDamagePerMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3228133944] = { "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life" }, } }, - ["GrantUnleashPowerUnique__1"] = { affix = "", "[DNT] Grants Level 10 Unleash Power", statOrder = { 737 }, level = 1, group = "GrantUnleashPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3174866731] = { "[DNT] Grants Level 10 Unleash Power" }, } }, - ["TriggerSocketedSpellOnKillUnique__1"] = { affix = "", "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", statOrder = { 783 }, level = 40, group = "TriggerSocketedSpellOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [3414107447] = { "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown" }, } }, - ["SummonWrithingWormEveryXMsUnique__1"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 625 }, level = 40, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["AddedDamagePerStrengthUnique__2"] = { affix = "", "Adds 8 to 24 Physical Damage to Attacks per 25 Strength", statOrder = { 4880 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 8 to 24 Physical Damage to Attacks per 25 Strength" }, } }, - ["LocalIncreasedAttackSpeedUnique__41"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% reduced Attack Speed" }, } }, - ["IncreasedAttackAreaOfEffectUnique__4"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4840 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["MaximumLifeOnKillPercentUnique__7"] = { affix = "", "Recover (4-6)% of Life on Kill", statOrder = { 1754 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (4-6)% of Life on Kill" }, } }, - ["SummonFireSkitterbotUnique__1"] = { affix = "", "Summon Skitterbots also summons a Scorching Skitterbot", statOrder = { 10295 }, level = 20, group = "SummonFireSkitterbot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3402861859] = { "Summon Skitterbots also summons a Scorching Skitterbot" }, } }, - ["SkitterbotAurasAlsoAffectYouUnique__1"] = { affix = "", "Summoned Skitterbots' Auras affect you as well as Enemies", statOrder = { 10313 }, level = 20, group = "SkitterbotAurasAlsoAffectYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483115633] = { "Summoned Skitterbots' Auras affect you as well as Enemies" }, } }, - ["SkitterbotIncreasedAilmentEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", statOrder = { 10315 }, level = 20, group = "SkitterbotIncreasedAilmentEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1268010771] = { "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots" }, } }, - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4458 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4462 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4452 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4459 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4450 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4451 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4453 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4456 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4463 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4466 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4464 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4465 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4467 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4454 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4457 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4470 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4475 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4477 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4485 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4479 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4476 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4483 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4480, 4480.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4473 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4482 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4468 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4472 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4484 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4474 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4490 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4502 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4488 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4501, 4501.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4486 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4503 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4500 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4492 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4491 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4494 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4497 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4489 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4498 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4495 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4496 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4499 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, - ["MovementSpeedPer5RageUnique_1"] = { affix = "", "(2-3)% increased Movement Speed per 5 Rage", statOrder = { 9422 }, level = 1, group = "MovementSpeedPer5Rage", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2876770866] = { "(2-3)% increased Movement Speed per 5 Rage" }, } }, - ["MaximumRageHalvedUnique_1"] = { affix = "", "Maximum Rage is Halved", statOrder = { 9183 }, level = 80, group = "MaximumRageHalved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [73569783] = { "Maximum Rage is Halved" }, } }, - ["DamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "5% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6101 }, level = 1, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733459550] = { "5% less Damage taken per 5 Rage, up to a maximum of 30%" }, } }, - ["AdditionalRageLossPerMinute"] = { affix = "", "Lose (1-3) Rage per second", statOrder = { 4591 }, level = 1, group = "AdditionalRageLossPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1124360291] = { "Lose (1-3) Rage per second" }, } }, - ["TrapAndMineThrowSpeedUnique_1"] = { affix = "", "(15-25)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 20, group = "TrapAndMineThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(15-25)% increased Trap and Mine Throwing Speed" }, } }, - ["CountAsHavingMaxEnduranceChargesUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", statOrder = { 5890 }, level = 1, group = "CountAsHavingMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1090017486] = { "Count as having maximum number of Endurance Charges" }, } }, - ["CountAsHavingMaxFrenzyChargesUnique__1"] = { affix = "", "Count as having maximum number of Frenzy Charges", statOrder = { 5892 }, level = 1, group = "CountAsHavingMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046300872] = { "Count as having maximum number of Frenzy Charges" }, } }, - ["CountAsHavingMaxPowerChargesUnique__1"] = { affix = "", "Count as having maximum number of Power Charges", statOrder = { 5893 }, level = 1, group = "CountAsHavingMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [800091665] = { "Count as having maximum number of Power Charges" }, } }, - ["CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1"] = { affix = "", "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", statOrder = { 5889 }, level = 40, group = "CountAsBlockingAttackFromShieldAttackFirstTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2196928545] = { "Count as Blocking Attack Damage from the first target Hit with each Shield Attack" }, } }, - ["CorruptedBloodImmunityUnique_1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["GhostTotemLimitUnique__1"] = { affix = "", "Maximum (3-5) Spectral Totems", statOrder = { 9532 }, level = 1, group = "GhostTotemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4154520427] = { "Maximum (3-5) Spectral Totems" }, } }, - ["GhostTotemDurationUnique__1"] = { affix = "", "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead", statOrder = { 5026 }, level = 1, group = "GhostTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4016251064] = { "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead" }, } }, - ["GhostTotemDamageUnique__1"] = { affix = "", "Skills used by Spectral Totems deal (40-50)% less Damage", statOrder = { 6866 }, level = 80, group = "GhostTotemDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3959546773] = { "Skills used by Spectral Totems deal (40-50)% less Damage" }, } }, - ["FoolishlyDrawnAttentionUnique_1"] = { affix = "", "The stars are aligned if you have 6 Influence types among other Equipped Items", statOrder = { 504 }, level = 86, group = "FoolishlyDrawnAttention", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389615049] = { "The stars are aligned if you have 6 Influence types among other Equipped Items" }, } }, - ["ConsecratedGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Consecrated Ground you create", statOrder = { 5852 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4058190193] = { "(30-50)% increased Effect of Consecrated Ground you create" }, } }, - ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5269 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } }, - ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } }, - ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2569 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } }, - ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 314 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } }, - ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2450 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10395 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } }, - ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } }, - ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7912 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } }, - ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10781 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } }, - ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5811 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } }, - ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9772 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10785 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1842 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } }, - ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5954 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } }, - ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4663 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } }, - ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5735 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } }, - ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5017 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } }, - ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8186 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } }, - ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4778 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } }, - ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7228 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } }, - ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6712 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } }, - ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6811 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } }, - ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10569 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } }, - ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } }, - ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6549 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } }, - ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4754 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, - ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1764 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } }, - ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9270 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } }, - ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9334 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } }, - ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4634 }, 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 = { 209 }, 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 = { 4634 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, - ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 411 }, 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 = { 3572 }, 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 = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, - ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10788 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } }, - ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7109 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } }, - ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5390 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } }, - ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } }, - ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } }, - ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } }, - ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2243 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } }, - ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } }, - ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10425 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, - ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 176 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } }, - ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9502 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, - ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1885 }, 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 = { 10565 }, 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 = { 3334 }, 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 = { 778 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } }, - ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5660 }, 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 = { 6129 }, 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 = { 4529 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } }, - ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6128 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } }, - ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7940 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } }, - ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9148 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3805 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } }, - ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9839 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } }, - ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6695 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } }, - ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7943 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } }, - ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7212 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } }, - ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6028 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 5% increased Damage Over Time per 100 Player Maximum Life" }, } }, - ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4559 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } }, - ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10699 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } }, - ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2677 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } }, - ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2656 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } }, - ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4945 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid All Damage from Hits" }, } }, - ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10019, 10019.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } }, - ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9796 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } }, - ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, - ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2807 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } }, - ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2875 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2874 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6454 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 413 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } }, - ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 625 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3774 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } }, - ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9299 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } }, - ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6267 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } }, - ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1437 }, 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 = { 1148 }, 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 = { 9752 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } }, - ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10784 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7343 }, 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 = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10802 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } }, - ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2022 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } }, - ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } }, - ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7393 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } }, - ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 412 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } }, - ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1046 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } }, - ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6550 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, - ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6815 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3608 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10571 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } }, - ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9283 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } }, - ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2525 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2518 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5038 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } }, - ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } }, - ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3058 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } }, - ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } }, - ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } }, - ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1987 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } }, - ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } }, - ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } }, - ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } }, - ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2650 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } }, - ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 2004 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9404 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } }, - ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2055 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } }, - ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 285 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } }, - ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9499 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } }, - ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } }, - ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5852 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } }, - ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8146 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } }, - ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2458 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } }, - ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, - ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2176 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } }, - ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } }, - ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } }, - ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7247 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } }, - ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1524 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } }, - ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9312 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } }, - ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6619 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } }, - ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1582 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } }, - ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5224 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } }, - ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } }, - ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4520 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } }, - ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8190 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } }, - ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } }, - ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } }, - ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 316 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } }, - ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1563, 1584 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } }, - ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9335 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } }, - ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 545 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } }, - ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10054 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } }, - ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4998 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } }, - ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } }, - ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5894 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6409 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } }, - ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 337 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } }, - ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } }, - ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } }, - ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9196 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } }, - ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1149 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } }, - ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10172 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } }, - ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9329 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10632 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8171 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } }, - ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6828 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } }, - ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7942 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } }, - ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6402 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } }, - ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9497 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } }, - ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9139 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life" }, } }, - ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9743 }, 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 = { 7344 }, 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 = { 2448 }, 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 = { 7961 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } }, - ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7959 }, 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 = { 10714, 10714.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10182 }, 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 = { 3062 }, 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 = { 3063 }, 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 = { 3071 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } }, - ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9453 }, 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 = { 10139 }, 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 = { 10183 }, 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 = { 760, 760.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, 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 = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1610 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1646 }, 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 = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9525 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } }, - ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } }, - ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1973 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } }, - ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7223 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } }, - ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9163 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } }, - ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6439 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } }, - ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 292 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } }, - ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1090, 5005 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } }, - ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1253 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } }, - ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 378 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } }, - ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } }, - ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6448 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } }, - ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6023 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } }, - ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3183 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10624 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } }, - ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5758 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } }, - ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9171 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } }, - ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6431 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } }, - ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2924 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } }, - ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 362 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } }, - ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } }, - ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4243 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } }, - ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4539 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } }, - ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 302 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } }, - ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } }, - ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9223 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } }, - ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2548 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } }, - ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2694 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value" }, } }, - ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } }, - ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4201 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } }, - ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4174 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } }, - ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, - ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10625 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } }, - ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10416 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } }, - ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7948 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } }, - ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } }, - ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } }, - ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2747 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } }, - ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 332 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } }, - ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5705 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7130 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } }, - ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3484 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2039 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } }, - ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } }, - ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9775 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1275 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } }, - ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1158 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } }, - ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4996 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } }, - ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 366 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } }, - ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } }, - ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } }, - ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } }, - ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 649 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } }, - ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } }, - ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9136 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } }, - ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6007 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9306 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } }, - ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5689 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5410 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } }, - ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } }, - ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9377 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } }, - ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2810 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } }, - ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6428 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } }, - ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5913 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10582 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } }, - ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10752 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } }, - ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9538 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } }, - ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4427 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["BeltEnchantImplicit"] = { affix = "", "Can be Anointed", statOrder = { 7871 }, level = 1, group = "BeltEnchantImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [52068049] = { "Can be Anointed" }, } }, - ["UniqueYourAttacksCannotBeBlocked__1"] = { affix = "", "Monsters cannot Block your Attacks", statOrder = { 10666 }, level = 1, group = "YourAttacksCannotBeBlocked", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4136294199] = { "Monsters cannot Block your Attacks" }, } }, - ["UniqueYourSpellsCannotBeSuppressed__1"] = { affix = "", "Monsters cannot Suppress your Spells", statOrder = { 10696 }, level = 1, group = "YourSpellsCannotBeSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [870219767] = { "Monsters cannot Suppress your Spells" }, } }, - ["UniqueElementalResistancesCannotBePenetrated__1"] = { affix = "", "Elemental Resistances cannot be Penetrated", statOrder = { 6343 }, 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 = { 10684 }, 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 = { 4942 }, level = 1, group = "AvoidChainingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729118116] = { "Avoid Projectiles that have Chained" }, } }, - ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } }, - ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } }, - ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } }, - ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7261 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } }, - ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } }, - ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6132 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } }, - ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } }, - ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } }, - ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } }, - ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7352 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8180 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } }, -} \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 05080ce9f9..c5295419f1 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -6750,6 +6750,7 @@ return { ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10175 }, 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 = { 10175 }, 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 = { 10175 }, 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 = { 4508 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds (2-12) Passive Skills" }, [3948993189] = { "" }, } }, ["JewelExpansionPassiveNodesUnique__1"] = { affix = "", "Adds 4 Passive Skills", statOrder = { 4508 }, 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 = { 7963 }, 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 = { 7963 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "2 Added Passive Skills are Jewel Sockets" }, } }, diff --git a/src/Export/Scripts/cluster.lua b/src/Export/Scripts/cluster.lua index d761795e98..f2ce55b918 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/mods.lua b/src/Export/Scripts/mods.lua index 7ac7f6bba5..f92851a507 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -64,6 +64,11 @@ local function writeMods(outName, condFunc) goto continue end end + -- game date 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, '"] = { ') @@ -216,16 +221,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 +297,7 @@ writeMods("../Data/BeastCraft.lua", function(mod) return (mod.Id:match("Aspect") and mod.GenerationType == GenTypes.Suffix) -- Aspect Crafts end) writeMods("../Data/ModFoulborn.lua", function(mod) - return mod.Domain == Domains.Item and mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("^MutatedUnique") + return (mod.Domain == Domains.Item or mod.Domain == Domains.Jewel) and mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("^MutatedUnique") end) -- enchants writeMods("../Data/ModEnchantment.lua", function(mod) diff --git a/src/Export/Uniques/ModTextMap.lua b/src/Export/Uniques/ModTextMap.lua index 6e13da61d2..2d6f578a91 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/Modules/Data.lua b/src/Modules/Data.lua index 0521b1f37c..55d95a9698 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -575,7 +575,7 @@ data.describeStats = LoadModule("Modules/StatDescriber") data.itemMods = { Explicit = LoadModule("Data/ModExplicit"), -- implicit mods and unique explicit mods - Intrinsic = LoadModule("Data/ModIntrinsic"), + ItemExclusive = LoadModule("Data/ModItemExclusive"), Corrupted = LoadModule("Data/ModCorrupted"), Delve = LoadModule("Data/ModDelve"), Synthesis = LoadModule("Data/ModSynthesis"), @@ -588,7 +588,8 @@ data.itemMods = { JewelAbyss = LoadModule("Data/ModJewelAbyss"), JewelCluster = LoadModule("Data/ModJewelCluster"), JewelCharm = LoadModule("Data/ModJewelCharm"), - Enchantment = LoadModule("Data/ModEnchantment") + Enchantment = LoadModule("Data/ModEnchantment"), + Foulborn = LoadModule("Data/ModFoulborn"), } data.masterMods = LoadModule("Data/ModMaster") data.enchantments = { @@ -603,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 @@ -1166,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") From c6fede4faa57ad0e7e7dbc4d981f4a42a682cf92 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 20:21:41 +0300 Subject: [PATCH 06/11] Disable crucible mods in "buy similar". these were just about nonfunctional in dev too --- src/Classes/CompareBuySimilar.lua | 4 +++- src/Classes/TradeHelpers.lua | 16 ++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 909296787a..cb3b5e01ca 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -208,7 +208,9 @@ function M.openPopup(item, slotName, primaryBuild) { list = item.enchantModLines, type = "enchant" }, { list = item.explicitModLines, type = "explicit" }, { list = item.scourgeModLines, type = "scourge" }, - { list = item.crucibleModLines, type = "crucible" }, + -- 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 diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index f435f1637a..88123077c2 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -269,14 +269,14 @@ function M.findTradeHash(item, modLine, modType) return tradeHashMaybe end end - -- crucible mods - elseif modType == "crucible" then - for _, dbMod in pairs(data.crucible) do - local tradeHashMaybe = findStat(dbMod) - if tradeHashMaybe then - return tradeHashMaybe - end - end + -- -- crucible mods + -- elseif modType == "crucible" then + -- for _, dbMod in pairs(data.crucible) do + -- local tradeHashMaybe = findStat(dbMod) + -- if tradeHashMaybe then + -- return tradeHashMaybe + -- end + -- end end -- if we still don't have a match, there's probably an issue with weight From d54ed700bf958c0558a8329b72d056aed51775d7 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 18 May 2026 20:59:55 +0300 Subject: [PATCH 07/11] comparison buy similar mod colours and gaps between different mod types --- src/Classes/CompareBuySimilar.lua | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index cb3b5e01ca..e7013665f3 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -204,8 +204,8 @@ function M.openPopup(item, slotName, primaryBuild) -- Collect mod entries with trade IDs local modEntries = {} local modTypeSources = { + { list = item.enchantModLines, type = "enchant" }, { list = item.implicitModLines, type = "implicit" }, - { list = item.enchantModLines, type = "enchant" }, { list = item.explicitModLines, type = "explicit" }, { list = item.scourgeModLines, type = "scourge" }, -- disabled due to matching difficulty. the trade site searches for @@ -216,8 +216,11 @@ function M.openPopup(item, slotName, primaryBuild) 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) - formatted = formatted and formatted:gsub(" %^8%(Not supported in PoB yet%)", "") 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 @@ -248,11 +251,12 @@ function M.openPopup(item, slotName, primaryBuild) t_insert(modEntries, { line = modLine.line, - formatted = formatted:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", ""), -- strip color codes + formatted = formatted, tradeId = identifier, value = value, valueIsOption = valueIsOption, modType = source.type, + type = source.type, invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) }) end @@ -389,17 +393,31 @@ 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) controls[prefix .. "Check"].enabled = function() return canSearch end -- Truncate long mod text to fit + --- @type string local displayText = entry.formatted - if #displayText > 65 then - displayText = displayText:sub(1, 55) .. "..." + 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 + 65) then + displayText = displayText:sub(1, #colorCodeLength + 55) .. "..." end - controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, (canSearch and "^7" or "^8") .. displayText) + + controls[prefix .. "Label"] = new("LabelControl", { "LEFT", controls[prefix .. "Check"], "RIGHT" }, { 4, 0, 0, 16 }, + displayText) -- when the trade site has a dropdown for the value, we opt to disable -- the inputs as they are numeric if not entry.valueIsOption and entry.value then From b8c69aa4ed202dbaaa93bc93303cf27c66abc0b4 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 02:47:11 +0300 Subject: [PATCH 08/11] Compare buy similar: remove --- src/Classes/CompareBuySimilar.lua | 66 ++++++++++++++----------------- 1 file changed, 30 insertions(+), 36 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index e7013665f3..49a5aed143 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -29,17 +29,6 @@ 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) @@ -192,6 +181,7 @@ function M.openPopup(item, slotName, primaryBuild) local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" local controls = {} + local uri = "" local rowHeight = 24 local popupWidth = 700 local leftMargin = 20 @@ -354,6 +344,23 @@ function M.openPopup(item, slotName, primaryBuild) fetchLeaguesForRealm("pc") ctrlY = ctrlY + rowHeight + 4 + local function rebuildUrl() + local result = buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) + uri = result + end + + -- Helper: create a numeric EditControl without +/- spinner buttons, and + -- with a preset changeFunc + local function newPlainNumericEdit(anchor, rect, init, prompt, limit) + local ctrl = new("EditControl", anchor, rect, init, prompt, "%D", limit, rebuildUrl) + -- 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 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) @@ -365,7 +372,7 @@ 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 @@ -379,7 +386,7 @@ function M.openPopup(item, slotName, primaryBuild) -- 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) @@ -402,7 +409,7 @@ function M.openPopup(item, slotName, primaryBuild) 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) + controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls[prefix .. "Check"].enabled = function() return canSearch end -- Truncate long mod text to fit --- @type string @@ -433,29 +440,16 @@ function M.openPopup(item, slotName, primaryBuild) -- 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 + -- ctrlY = ctrlY + rowHeight + 4 + controls.close = new("ButtonControl", nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function() main:ClosePopup() end) From 11038f1af5ac4fe50ec720a7d45a7780d4fa37f7 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 05:10:08 +0300 Subject: [PATCH 09/11] Buy similar: fix matching mods with dropdown options, and fix inverted mod matching --- src/Classes/CompareBuySimilar.lua | 34 +++++---------------- src/Classes/TradeHelpers.lua | 51 +++++++++++++++++++++++++++---- 2 files changed, 53 insertions(+), 32 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 49a5aed143..8cddd2c9d5 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -129,7 +129,7 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is if entry.tradeId and controls[prefix .. "Check"] and controls[prefix .. "Check"].state then local filter = { id = entry.tradeId } - if entry.valueIsOption then + if entry.options then filter.value = { option = entry.value } elseif entry.value then local minVal = tonumber(controls[prefix .. "Min"].buf) @@ -215,26 +215,9 @@ function M.openPopup(item, slotName, primaryBuild) -- Use range-resolved text for matching local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or modLine.line - -- special case: cluster enchantment - local identifier, value - -- whether to add a min and max, or an option field - local valueIsOption = false - local clusterMatch = resolvedLine:match("Added Small Passive Skills grant: (.+)") - if clusterMatch then - identifier = "enchant.stat_3948993189" - for _, v in pairs(item.clusterJewel.skills) do - for _, stat in ipairs(v.stats) do - if stat == clusterMatch then - value = v.id - valueIsOption = true - goto outer - end - end - end - ::outer:: - else - local tradeHash = tradeHelpers.findTradeHash(item, resolvedLine, source.type) - identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) + local tradeHash, options, value = tradeHelpers.findTradeHash(item, resolvedLine, source.type) + local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) + if not options then value = tradeHelpers.modLineValue(resolvedLine) end @@ -244,7 +227,7 @@ function M.openPopup(item, slotName, primaryBuild) formatted = formatted, tradeId = identifier, value = value, - valueIsOption = valueIsOption, + options = options, modType = source.type, type = source.type, invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) @@ -419,15 +402,15 @@ function M.openPopup(item, slotName, primaryBuild) -- strip color codes and replace with gray displayText = "^8" .. displayText:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", "") end - if #displayText > (#colorCodeLength + 65) then - displayText = displayText:sub(1, #colorCodeLength + 55) .. "..." + if #displayText > (#colorCodeLength + 60) then + displayText = displayText:sub(1, #colorCodeLength + 54) .. "..." end controls[prefix .. "Label"] = new("LabelControl", { "LEFT", controls[prefix .. "Check"], "RIGHT" }, { 4, 0, 0, 16 }, displayText) -- when the trade site has a dropdown for the value, we opt to disable -- the inputs as they are numeric - if not entry.valueIsOption and entry.value then + if not entry.options and entry.value then 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 @@ -448,7 +431,6 @@ function M.openPopup(item, slotName, primaryBuild) controls.search.enabled = function() return uri and uri ~= "" end - -- ctrlY = ctrlY + rowHeight + 4 controls.close = new("ButtonControl", nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function() main:ClosePopup() diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 88123077c2..82a07c5bde 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -35,6 +35,8 @@ end -- Helper: fetch and cache the trade API stats local _tradeStats = nil local _tradeStatsFetched = false +-- contains data for stats which have options, like allocates # +local optionTradeStatMap = {} --- @return table local function getTradeStatsLookup() if _tradeStats then return _tradeStats end @@ -52,6 +54,21 @@ local function getTradeStatsLookup() if not ok or tradeStats == "" then return {} end local parsed = dkjson.decode(tradeStats) _tradeStats = parsed.result + + 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("\nPassage", "") + local hash = tonumber(entry.id:match("%a+.stat_(%d+)")) + optionTradeStatMap[matchKey] = { type = cat.id, options = entry.option.options, tradeHash = hash } + end + end + end + end + return _tradeStats end @@ -96,6 +113,10 @@ end function M.shouldBeInverted(tradeId, modLine, modType) local formattedLine = M.formatDatabaseText(M.formatDatabaseText(modLine)) local invertedLine, inverseKey = M.swapInverse(formattedLine) + invertedLine = invertedLine:gsub("^%-", "") + if not inverseKey then + return false + end for _, category in ipairs(getTradeStatsLookup()) do if category.id == modType then for _, stat in ipairs(category.entries) do @@ -140,8 +161,15 @@ end --- @param item table --- @param modLine string --- @param modType string ---- @return number? +--- the hash that was found +--- @return number? hash, table[]? optionsIfApplicable, number[]? matchedOptionId function M.findTradeHash(item, modLine, modType) + -- these mod results in false positives and are either useless, or + -- effectively found by searching for the unique item's name + if modLine == "Passage" or modLine == "Passive Skills in Radius can be Allocated without being connected to your tree" then + return nil + end + local formattedLine = M.formatDatabaseText(modLine) -- the data export splits some mods into different parts, even though they -- are technically just one stat. we handle that here @@ -157,9 +185,6 @@ function M.findTradeHash(item, modLine, modType) end for tradeHash, description in pairs(dbMod.tradeHashes) do local tradeLine = table.concat(description, "\n") - if tradeLine:match("increased Critical Strike Chance against Shocked Enemies") then - ConPrintf("help") - end if formattedLine == M.formatDatabaseText(tradeLine) then return tradeHash end @@ -172,11 +197,25 @@ function M.findTradeHash(item, modLine, modType) return tradeHash end end - - end end + -- initialise optionTradeStatMap + if not _tradeStats then + getTradeStatsLookup() + 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.tradeHash, entry.options, option.id + end + end + end + end if item.foulborn then for _, dbMod in pairs(data.itemMods.Foulborn) do local tradeHashMaybe = findStat(dbMod) From 595c7734d805daf08ad74a828f0d6a98c3069c53 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 17:40:16 +0300 Subject: [PATCH 10/11] Remove useless function in trade helpers --- src/Classes/TradeHelpers.lua | 9 +-------- src/Classes/TradeQueryGenerator.lua | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 82a07c5bde..c4d78f552a 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -339,7 +339,7 @@ end -- categoryLabel: e.g. "Shield", "1HMace", "1HWeapon" (nil for flask / generic jewel / unsupported) --- @param slotName string --- @param item table -function M.getTradeCategoryInfo(slotName, item) +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 @@ -376,13 +376,6 @@ function M.getTradeCategoryInfo(slotName, item) end end --- Helper: map slot name + item type to trade API category string ---- @param item table -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 diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 5087176db7..8362151f58 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -741,7 +741,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 From 97023c82b65d31a228fa7c5def013d2cf0547222 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Thu, 21 May 2026 20:07:21 +0300 Subject: [PATCH 11/11] Buy similar: match timeless jewel mod --- src/Classes/CompareBuySimilar.lua | 71 ++++++++++++++----- src/Classes/TradeHelpers.lua | 4 +- src/Data/TimelessJewelData/LegionTradeIds.lua | 2 +- 3 files changed, 56 insertions(+), 21 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 8cddd2c9d5..263c551403 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -131,8 +131,13 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is local filter = { id = entry.tradeId } if entry.options then filter.value = { option = entry.value } + -- some entries don't want to search for ranges, but aren't + -- implemented using options on the trade site (timeless jewels) + elseif entry.needsExactValue 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 @@ -213,25 +218,55 @@ function M.openPopup(item, slotName, primaryBuild) 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 tradeHash, options, value = tradeHelpers.findTradeHash(item, resolvedLine, source.type) - local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) - if not options then - value = tradeHelpers.modLineValue(resolvedLine) + local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or + modLine.line + + 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 (.+)" } + local conquerorTradeId = nil + for _, pat in ipairs(timelessPatterns) do + local conqueror = resolvedLine:lower():match(pat) + if conqueror then + conquerorTradeId = "explicit.pseudo_timeless_jewel_" .. conqueror + break + end end - - t_insert(modEntries, { - line = modLine.line, - formatted = formatted, - tradeId = identifier, - value = value, - options = options, - modType = source.type, - type = source.type, - invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) - }) + -- timeless jewels have a special trade id format based + -- on the conqueror name, which doesn't use a hash + if item.jewelData and item.jewelData.conqueredBy and conquerorTradeId then + t_insert(modEntries, { + line = modLine.line, + formatted = formatted, + tradeId = conquerorTradeId, + value = item.jewelData.conqueredBy.id, + -- it doesn't actually use options, but + -- searching for ranges is useless here + options = nil, + needsExactValue = true, + type = source.type, + invert = false + }) + else + local tradeHash, options, value = tradeHelpers.findTradeHash(item, resolvedLine, source.type) + local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) + if not options then + value = tradeHelpers.modLineValue(resolvedLine) + end + t_insert(modEntries, { + line = modLine.line, + formatted = formatted, + tradeId = identifier, + value = value, + options = options, + type = source.type, + invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) + }) + end end end end @@ -410,7 +445,7 @@ function M.openPopup(item, slotName, primaryBuild) displayText) -- when the trade site has a dropdown for the value, we opt to disable -- the inputs as they are numeric - if not entry.options and entry.value then + if not (entry.options or entry.needsExactValue) and entry.value then 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 diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index c4d78f552a..4b18dde234 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -166,7 +166,7 @@ end function M.findTradeHash(item, modLine, modType) -- these mod results in false positives and are either useless, or -- effectively found by searching for the unique item's name - if modLine == "Passage" or modLine == "Passive Skills in Radius can be Allocated without being connected to your tree" then + if modLine == "Passage" or modLine == "Passive Skills in Radius can be Allocated without being connected to your tree" then return nil end @@ -175,7 +175,7 @@ function M.findTradeHash(item, modLine, modType) -- are technically just one stat. we handle that here local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" - function findStat(dbMod, ignoreWeights) + local function findStat(dbMod, ignoreWeights) local excludeTags = (not isUnique) and { default = true } or nil -- cluster jewel mod weights are weird local isMatchingClusterMod = dbMod.group and dbMod.group:match("^Affliction") and diff --git a/src/Data/TimelessJewelData/LegionTradeIds.lua b/src/Data/TimelessJewelData/LegionTradeIds.lua index 43930e7e73..50b12b6ba1 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" },