diff --git a/spec/System/TestTradeQueryGenerator_spec.lua b/spec/System/TestTradeQueryGenerator_spec.lua index fd4173b49..bc7edc9f6 100644 --- a/spec/System/TestTradeQueryGenerator_spec.lua +++ b/spec/System/TestTradeQueryGenerator_spec.lua @@ -5,10 +5,9 @@ describe("TradeQueryGenerator", function() -- Pass: Mod line maps correctly to trade stat entry without error -- Fail: Mapping fails (e.g., no match found), indicating incomplete stat parsing for curse mods, potentially missing curse-enabling items in queries it("handles special curse case", function() - local mod = { tradeHashes = {[30642521] = {"You can apply an additional Curse"}} } - local tradeStatsParsed = { result = { [2] = { entries = { { text = "You can apply # additional Curses", id = "explicit.stat_30642521" } } } } } - mock_queryGen.modData = { Explicit = true } - mock_queryGen:ProcessMod(mod, tradeStatsParsed, 1) + local mod = { tradeHashes = {[30642521] = {"You can apply an additional Curse"}}, type = "Prefix", weightKey = {}, weightVal = {} } + mock_queryGen.modData = { Explicit = {} } + mock_queryGen:ProcessMod(mod) -- Simplified assertion; in full impl, check modData assert.is_true(true) end) diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index cd37621c2..9c098dab0 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -32,30 +32,23 @@ function M.modLineValue(line) return tonumber(line:match("%-?[%d]+%.?[%d]*")) 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() +local _tradeStats + +---@return table? tradeStats +function M.getTradeStats() if _tradeStats then return _tradeStats end - local tradeStats = "" - local easy = common.curl.easy() - if not easy then return nil end - easy:setopt_url("https://www.pathofexile.com/api/trade2/data/stats") - easy:setopt_useragent("Path of Building/" .. (launch.versionNumber or "")) - easy:setopt_writefunction(function(d) - tradeStats = tradeStats .. d - return true - end) - local ok = easy:perform() - easy:close() - if not ok or tradeStats == "" then return {} end - local parsed = dkjson.decode(tradeStats) - _tradeStats = parsed.result - - for _, cat in ipairs(_tradeStats) do + _tradeStats = LoadModule("Data/TradeSiteStats") + return _tradeStats +end + +local _optionTradeStatMap + +---@param tradeStats table table of data from https://www.pathofexile.com/api/trade2/data/stats +---@return table optionTradeStatMap table containing helper data for matching trade option filters +local function getOptionTradeStatMap(tradeStats) + if _optionTradeStatMap then return _optionTradeStatMap end + local optionTradeStatMap = {} + for _, cat in ipairs(tradeStats) do if cat.id == "enchant" or cat.id == "explicit" or cat.id == "implicit" then optionTradeStatMap[cat.id] = {} for _, entry in ipairs(cat.entries) do @@ -72,7 +65,8 @@ local function getTradeStatsLookup() end end end - return _tradeStats + _optionTradeStatMap = optionTradeStatMap + return _optionTradeStatMap end -- Map source types used in OpenBuySimilarPopup to trade API category labels @@ -120,7 +114,7 @@ function M.shouldBeInverted(tradeId, modLine, modType) if not inverseKey then return false end - for _, category in ipairs(getTradeStatsLookup()) do + for _, category in ipairs(M.getTradeStats() or {}) do if category.id == modType then for _, stat in ipairs(category.entries) do if tradeId == stat.id then @@ -132,7 +126,9 @@ function M.shouldBeInverted(tradeId, modLine, modType) end -- test for inverted mod - if inverseKey and ((invertedLine == formattedTradeSiteText) or (invertedLine:gsub("^%+", "") == formattedTradeSiteText)) then + if inverseKey + and ((invertedLine == formattedTradeSiteText) + or (invertedLine:gsub("^%+", "") == formattedTradeSiteText)) then return true end @@ -153,22 +149,18 @@ function M.formatDatabaseText(text) -- (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 ---- @param item table ---- @param modLine string ---- @param modType string ---- @param isDesecrated boolean ---- the ---- @return number? hash returned for most mods ---- @return string? optionTradeId returned if the mod is an option. e.g. Allocates X ---- @return number value returned if the mod is an option and uses values. e.g. timeless jewel +---@param item table +---@param modLine string +---@param modType string +---@param isDesecrated boolean +---@return number? hash returned for most mods +---@return string? optionTradeId returned if the mod is an option. e.g. Allocates X +---@return number? value returned if the mod is an option and uses values. e.g. timeless jewel function M.findTradeHash(item, modLine, modType, isDesecrated) local formattedLine = M.formatDatabaseText(modLine) -- the data export splits some mods into different parts, even though they @@ -176,7 +168,8 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" local function findStat(dbMod, ignoreWeights) local excludeTags = (not isUnique) and { default = true } or nil - if not ignoreWeights and #(dbMod.weightKey or {}) > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then + if not 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 @@ -196,10 +189,9 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end - -- initialise optionTradeStatMap - if not _tradeStats then - getTradeStatsLookup() - end + local tradeStats = M.getTradeStats() + local optionTradeStatMap = getOptionTradeStatMap(tradeStats) + if not tradeStats or not optionTradeStatMap then return end for _, v in ipairs(optionTradeStatMap[modType] or {}) do if v.pattern then @@ -211,7 +203,6 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) return nil, v.tradeId end end - -- desecrate-only mods if isDesecrated then @@ -230,8 +221,8 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) return tradeHashMaybe end end - -- most implicit and explicit applicable to the type - elseif modType ~= "implicit" or modType ~= "explicit" then + -- most implicit and explicit applicable to the type + elseif modType == "implicit" or modType == "explicit" then for _, dbMod in pairs(item.affixes) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index f90c78ea9..20994f7f3 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -777,7 +777,7 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, ba self.onlyWeightedBaseOutput[row_idx][result_index] = onlyWeightedBaseOutput self.lastComparedWeightList[row_idx][result_index] = self.statSortSelectionList end - + local slotName = self.slotTables[row_idx].nodeId and "Jewel " .. tostring(self.slotTables[row_idx].nodeId) or self.slotTables[row_idx].slotName if slotName == "Megalomaniac" then local addedNodes = {} @@ -787,7 +787,7 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, ba addedNodes[node] = true end end - + local output = self:ReduceOutput(calcFunc({ addNodes = addedNodes })) local weight = self.tradeQueryGenerator.WeightedRatioOutputs(baseOutput, output, self.statSortSelectionList) result.evaluation = {{ output = output, weight = weight }} @@ -968,31 +968,43 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro self:SetNotice(context.controls.pbNotice, "") end + -- ensure we only take in items that parse properly to avoid crash issues. + local itemsSafe = {} + for _, entry in ipairs(items) do + local item = new("Item", entry.item_string) + if item.base then + t_insert(itemsSafe, entry) + end + end + if self.tradeQueryGenerator.lastAugmentBehaviour == "Copy Current" or self.tradeQueryGenerator.lastAnointBehaviour == "Copy Current" then - for i, _ in ipairs(items) do - local item = new("Item", items[i].item_string) - self.itemsTab:CopyAnointsAndAugments(item, true, true, context.slotTbl.slotName) - items[i].item_string = item:BuildRaw() + for i, _ in ipairs(itemsSafe) do + local item = new("Item", itemsSafe[i].item_string) + -- avoid interacting with badly parsed stuff + if item.base and item.type then + self.itemsTab:CopyAnointsAndAugments(item, true, true, context.slotTbl.slotName) + itemsSafe[i].item_string = item:BuildRaw() + end end elseif self.tradeQueryGenerator.lastAugmentBehaviour == "Remove" then - for item_idx, _ in ipairs(items) do - local item = new("Item", items[item_idx].item_string) + for item_idx, _ in ipairs(itemsSafe) do + local item = new("Item", itemsSafe[item_idx].item_string) -- sockets are kept as-is so the user can see e.g. exceptional or corrupted sockets for rune_idx, _ in ipairs(item.runes or {}) do item.runes[rune_idx] = "None" end item:UpdateRunes() - items[item_idx].item_string = item:BuildRaw() + itemsSafe[item_idx].item_string = item:BuildRaw() end elseif self.tradeQueryGenerator.lastAnointBehaviour == "Remove" then - for i, _ in ipairs(items) do - local item = new("Item", items[i].item_string) + for i, _ in ipairs(itemsSafe) do + local item = new("Item", itemsSafe[i].item_string) item.enchantModLines = {} - items[i].item_string = item:BuildRaw() + itemsSafe[i].item_string = item:BuildRaw() end end - self.resultTbl[context.row_idx] = items + self.resultTbl[context.row_idx] = itemsSafe self:UpdateControlsWithItems(context.row_idx) context.controls["priceButton"..context.row_idx].label = "Price Item" end, diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index c78d3ae8f..9c7dd8d82 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -81,13 +81,26 @@ for type, bases in pairs(data.itemBaseLists) do end end -local tradeStatCategoryIndices = { - ["Explicit"] = 2, - ["Implicit"] = 3, - ["Corrupted"] = 5, - ["AllocatesXEnchant"] = 5, - ["Rune"] = 6, -} + +---@return table[]? category list of entries for the mod type +local function getStatEntries(modType) + local tradeStats = tradeHelpers.getTradeStats() + local tradeStatCategoryIndices = { + ["Explicit"] = "explicit", + ["Implicit"] = "implicit", + ["Corrupted"] = "enchant", + ["AllocatesXEnchant"] = "enchant", + -- note that in the json the label is augment while the id is rune + ["Rune"] = "rune" + } + if tradeStatCategoryIndices[modType] then + for i, cat in ipairs(tradeStats) do + if cat.id == tradeStatCategoryIndices[modType] then + return cat.entries + end + end + end +end local MAX_FILTERS = 35 @@ -105,20 +118,6 @@ local TradeQueryGeneratorClass = newClass("TradeQueryGenerator", function(self, self.lastMaxLevel = nil end) -local function fetchStats() - local tradeStats = "" - local easy = common.curl.easy() - easy:setopt_url("https://www.pathofexile.com/api/trade2/data/stats") - easy:setopt_useragent("Path of Building/" .. launch.versionNumber) - easy:setopt_writefunction(function(data) - tradeStats = tradeStats..data - return true - end) - easy:perform() - easy:close() - return tradeStats -end - local function canModSpawnForItemCategory(mod, names) for _, name in pairs(tradeCategoryNames[names]) do for _, tags in ipairs(tradeCategoryTags[name]) do @@ -184,7 +183,7 @@ function TradeQueryGeneratorClass.WeightedRatioOutputs(baseOutput, newOutput, st end -function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) +function TradeQueryGeneratorClass:ProcessMod(mod, itemCategoriesMask, itemCategoriesOverride) -- processes mods from the data exports to a format that is more useful for -- generating weights. @@ -221,17 +220,11 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat modLine = modLine:gsub("Slots", "Slot") end - -- If this is the first tier for this mod, find matching trade mod and init the entry - if not self.modData[modType] then - logToFile("Unhandled Mod Type: %s", modType) - goto continue - end - -- iterate trade mod category to find mod with matching text. local function getTradeMod() local entry local tradeHashStr = tostring(tradeHash) - for _, v in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do + for _, v in ipairs(getStatEntries(modType) or {}) do -- prefix removed local ids = v.id:gsub(".+..stat_", "").."|" -- split by non-integer @@ -307,7 +300,7 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat max = #max > 0 and tonumber(max) or tonumber(min) tokenizeOffset = tokenizeOffset + (endPos - startPos) - + -- the values are negative record its ranges as such. if (invert or sign == "-") and not (invert and sign == "-") then local temp = max @@ -316,7 +309,7 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat end if sign == "+" then self.modData[modType][uniqueIndex].usePositiveSign = true end - + t_insert(tokens, min) t_insert(tokens, max) end @@ -351,9 +344,9 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat ::continue:: end -function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) +function TradeQueryGeneratorClass:GenerateModData(mods, itemCategoriesMask, itemCategoriesOverride) for _, mod in pairsSortByKey(mods) do - self:ProcessMod( mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) + self:ProcessMod( mod, itemCategoriesMask, itemCategoriesOverride) end end @@ -367,37 +360,62 @@ function TradeQueryGeneratorClass:InitMods() return end + -- download stats JSON from GGG API + launch:DownloadPage("https://www.pathofexile.com/api/trade2/data/stats", + function(response, errMsg) + if errMsg then + error("Error while downloading stats.json: "..errMsg) + end + local body = dkjson.decode(response.body) + + if body.error then + error("Error received from api/trade2/data/stats: "..body.error.message) + end + + local f = io.open("./Data/TradeSiteStats.lua", "w") + if not f then + error("Could not open file for writing trade stat data") + end + + for catIdx, _ in ipairs(body.result) do + table.sort(body.result[catIdx].entries, function(a, b) + return a.text < b.text + end) + end + + + local template = [[-- This file is automatically downloaded, do not edit! +-- Trade site stat data (c) Grinding Gear Games +-- https://www.pathofexile.com/api/trade2/data/stats +-- spell-checker: disable +return %s +-- spell-checker: enable]] + f:write(s_format(template, stringify(body.result))) + + f:close() + end + ) + self.modData = { ["Explicit"] = { }, ["Implicit"] = { }, + ["Corrupted"] = { }, ["Enchant"] = { }, ["AllocatesXEnchant"] = { }, - ["Corrupted"] = { }, ["Rune"] = { }, } - -- originates from: https://www.pathofexile.com/api/trade2/data/stats - local tradeStats = fetchStats() - -- stop modifier texts from breaking the lua formatting - tradeStats = tradeStats:gsub("\\n", "") - local tradeQueryStatsParsed = dkjson.decode(tradeStats) - for _, modDomain in ipairs(tradeQueryStatsParsed.result) do - for _, mod in ipairs(modDomain.entries) do - mod.text = escapeGGGString(mod.text) - end - end - -- create mask for regular mods local regularItemMask = { } for category, _ in pairs(tradeCategoryNames) do regularItemMask[category] = true end - self:GenerateModData(data.itemMods.Item, tradeQueryStatsParsed, regularItemMask) - self:GenerateModData(data.itemMods.Corruption, tradeQueryStatsParsed, regularItemMask) - self:GenerateModData(data.itemMods.Jewel, tradeQueryStatsParsed, { ["BaseJewel"] = true, ["AnyJewel"] = true, ["RadiusJewel"] = true }) - self:GenerateModData(data.itemMods.Flask, tradeQueryStatsParsed, { ["LifeFlask"] = true, ["ManaFlask"] = true }) - self:GenerateModData(data.itemMods.Charm, tradeQueryStatsParsed, { ["Charm"] = true }) + self:GenerateModData(data.itemMods.Item, regularItemMask) + self:GenerateModData(data.itemMods.Corruption, regularItemMask) + self:GenerateModData(data.itemMods.Jewel, { ["BaseJewel"] = true, ["AnyJewel"] = true, ["RadiusJewel"] = true }) + self:GenerateModData(data.itemMods.Flask, { ["LifeFlask"] = true, ["ManaFlask"] = true }) + self:GenerateModData(data.itemMods.Charm, { ["Charm"] = true }) -- essences, because in item mod data they don't have equipment tags for name, essence in pairs(data.essences) do @@ -407,16 +425,16 @@ function TradeQueryGeneratorClass:InitMods() local mask = {} local itemType = itemType == "Warstaff" and "Quarterstaff" or itemType mask[itemType] = true - self:ProcessMod(data.itemMods.Item[modName], tradeQueryStatsParsed, regularItemMask, mask) + self:ProcessMod(data.itemMods.Item[modName], regularItemMask, mask) end end end -- fix the weird exception for _, v in ipairs({"EssencePercentStrength1", "EssencePercentDexterity1", "EssencePercentIntelligence1"}) do - self:ProcessMod(data.itemMods.Item[v], tradeQueryStatsParsed, regularItemMask, { Amulet = true }) + self:ProcessMod(data.itemMods.Item[v], regularItemMask, { Amulet = true }, "explicit") end - for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices.AllocatesXEnchant].entries) do + for _, entry in ipairs(getStatEntries("AllocatesXEnchant") or {}) do if entry.text:sub(1, 10) == "Allocates " then -- The trade id for allocatesX enchants end with "|[nodeID]" for the allocated node. local nodeId = entry.id:sub(entry.id:find("|") + 1) @@ -442,6 +460,12 @@ function TradeQueryGeneratorClass:InitMods() found = true mod = v mod.type = "Implicit" + -- it is possible for there to be multiple matches. For example "+(20-30) to + -- maximum Energy Shield" tends to match both the amulet implicit and some + -- other unique mod which is local energy shield instead. in that case it + -- incorrectly gets mapped to the local stat. this is however super rare as + -- it needs the ranges to match exactly. + break end end end @@ -467,7 +491,7 @@ function TradeQueryGeneratorClass:InitMods() -- mask found process implicit mod this avoids processing unimplemented bases i.e. two handed axes. if next(maskOverride) ~= nil then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, maskOverride) + self:ProcessMod(mod, regularItemMask, maskOverride) end end ::continue:: @@ -479,27 +503,24 @@ function TradeQueryGeneratorClass:InitMods() for i, modLine in ipairs(mods) do local mod = {modLine, tradeHashes = mods.tradeHashes, type = "Rune"} if slotType == "weapon" then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) + self:ProcessMod(mod, regularItemMask, { ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) elseif slotType == "armour" then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["Shield"] = true, ["Chest"] = true, ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Focus"] = true }) + self:ProcessMod(mod, regularItemMask, { ["Shield"] = true, ["Chest"] = true, ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Focus"] = true }) elseif slotType == "caster" then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["Wand"] = true, ["Staff"] = true }) + self:ProcessMod(mod, regularItemMask, { ["Wand"] = true, ["Staff"] = true }) else -- Mod is slot specific, try to match against a value in tradeCategoryNames - local matchedCategory = nil + local matchedCategories = {} for category, categoryOptions in pairs(tradeCategoryNames) do - for i, opt in pairs(categoryOptions) do - if opt:lower():match("^"..slotType) then - matchedCategory = category - break + for _, opt in ipairs(categoryOptions) do + -- warstaves have inconsistent naming and need special handling + if opt:lower() == slotType or ((opt == "Staff: Warstaff") and (slotType == "warstaff")) then + matchedCategories[category] = true end end - if matchedCategory then - break - end end - if matchedCategory then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { [matchedCategory] = true }) + if next(matchedCategories) then + self:ProcessMod(mod, regularItemMask, matchedCategories) else ConPrintf("TradeQuery: Unmatched category for modifier. Slot type: %s Modifier: %s", mods.slotType, mods.name) end @@ -607,7 +628,7 @@ function TradeQueryGeneratorClass:GeneratePassiveNodeWeights(nodesToTest) goto continue end end - + local baseOutput = self.calcContext.baseOutput local output = self.calcContext.calcFunc({ addNodes = { [node] = true } }) local meanStatDiff = TradeQueryGeneratorClass.WeightedRatioOutputs(baseOutput, output, self.calcContext.options.statWeights) * 1000 - (self.calcContext.baseStatValue or 0) @@ -615,7 +636,7 @@ function TradeQueryGeneratorClass:GeneratePassiveNodeWeights(nodesToTest) t_insert(self.modWeights, { tradeModId = entry.tradeMod.id, weight = meanStatDiff, meanStatDiff = meanStatDiff, invert = false }) end self.alreadyWeightedMods[entry.tradeMod.id] = true - + local now = GetTime() if now - start > 50 then -- Would be nice to update x/y progress on the popup here, but getting y ahead of time has a cost, and the visual seems to update on a significant delay anyways so it's not very useful @@ -785,21 +806,21 @@ function TradeQueryGeneratorClass:FinishQuery() local originalOutput = originalItem and self.calcContext.calcFunc({ repSlotName = self.calcContext.slot.slotName, repItem = self.calcContext.testItem }) or self.calcContext.baseOutput local currentStatDiff = TradeQueryGeneratorClass.WeightedRatioOutputs(self.calcContext.baseOutput, originalOutput, self.calcContext.options.statWeights) * 1000 - (self.calcContext.baseStatValue or 0) - + -- Sort by mean Stat diff rather than weight to more accurately prioritize stats that can contribute more - table.sort(self.modWeights, function(a, b) + table.sort(self.modWeights, function (a, b) if a.meanStatDiff == b.meanStatDiff then return math.abs(a.weight) > math.abs(b.weight) end return a.meanStatDiff > b.meanStatDiff end) - + -- A megalomaniac is not being compared to anything and the currentStatDiff will be 0, so just go for an arbitrary min weight - in this case triple the weight of the worst evaluated node. local megalomaniacSpecialMinWeight = self.calcContext.special.itemName == "Megalomaniac" and self.modWeights[#self.modWeights] * 3 -- This Stat diff value will generally be higher than the weighted sum of the same item, because the stats are all applied at once and can thus multiply off each other. -- So apply a modifier to get a reasonable min and hopefully approximate that the query will start out with small upgrades. local minWeight = megalomaniacSpecialMinWeight or currentStatDiff * 0.5 - + -- what the trade site API uses for instant buyout etc. self.tradeTypes = { "securable", @@ -955,7 +976,7 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb updateLastAnchor(controls.includeCorrupted) - + controls.includeMirrored = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Mirrored Items:", function(state) end) controls.includeMirrored.state = (self.lastIncludeMirrored == nil or self.lastIncludeMirrored == true) diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 6db67c201..6c1f856ce 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -110,17 +110,17 @@ return { ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 916 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-15)% increased Critical Damage Bonus" }, } }, ["CorruptionChanceToPierce1"] = { type = "Corrupted", affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, - ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, - ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, - ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, - ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7278 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10549 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2717 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, + ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, + ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, + ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, + ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, + ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, + ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, + ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7278 }, level = 1, group = "ImmuneToMaim", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, + ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10549 }, level = 1, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2717 }, level = 1, group = "ImmunityToBlind", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-25)% increased Warcry Speed" }, } }, ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 65f64190e..5199111d8 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -2,4867 +2,5464 @@ -- Item data (c) Grinding Gear Games return { - ["LocalBaseEvasionRatingAndEnergyShieldPerLevelImplicit"] = { affix = "[DNT-UNUSED] Hand Wraps", "DNT-UNUSED +5 to Evasion Rating per level", statOrder = { 7161 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259972052] = { "DNT-UNUSED +5 to Evasion Rating per level" }, } }, - ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 886 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, - ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5028 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, - ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, - ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-40)% increased Critical Hit Chance for Attacks" }, } }, - ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-40)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 965 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1752419596] = { "Gain Deflection Rating equal to 20% of Armour" }, } }, - ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, - ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, - ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, - ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, - ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(70-80)% reduced Amount Recovered" }, } }, - ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, - ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 844 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire damage to Attacks" }, } }, - ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 984 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(25-40)% increased Stun Buildup" }, } }, - ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2159 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (20-30)% chance to cause Bleeding" }, } }, - ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 941 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, - ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1001 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "100% chance to Pierce an Enemy" }, } }, - ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1479 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(20-30)% increased Arrow Speed" }, } }, - ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-30)% increased Critical Hit Chance for Attacks" }, } }, - ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2-4) Life Regeneration per second" }, } }, - ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 867 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 946 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 874 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 916 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, - ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, - ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 862 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(120-160) to Accuracy Rating" }, } }, - ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, - ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, - ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [958696139] = { "Grants 1 additional Skill Slot" }, } }, - ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, - ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, - ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 878 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389754388] = { "(15-20)% increased Charm Effect Duration" }, } }, - ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(100-140) to Armour", statOrder = { 863 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(100-140) to Armour" }, } }, - ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5229 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, - ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6222 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, - ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6447 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, - ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, - ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, - ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, - ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 680 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1691862754] = { "Used when you become Frozen" }, } }, - ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 678 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3676540188] = { "Used when you start Bleeding" }, } }, - ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 682 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1412682799] = { "Used when you become Poisoned" }, } }, - ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 681 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585126960] = { "Used when you become Ignited" }, } }, - ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 683 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3699444296] = { "Used when you become Shocked" }, } }, - ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 696 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810482573] = { "Used when you become Stunned" }, } }, - ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 684 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2778646494] = { "Used when you are affected by a Slow" }, } }, - ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 688 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854901951] = { "Used when you take Fire damage from a Hit" }, } }, - ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 686 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2994271459] = { "Used when you take Cold damage from a Hit" }, } }, - ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 695 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2016937536] = { "Used when you take Lightning damage from a Hit" }, } }, - ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 685 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310778564] = { "Used when you take Chaos damage from a Hit" }, } }, - ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you kill a Rare or Unique enemy", statOrder = { 694 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010341289] = { "Used when you kill a Rare or Unique enemy" }, } }, - ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 676 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4146282829] = { "Used when you become Cursed" }, } }, - ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(30-40)% increased Stun Threshold" }, } }, - ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-2.5)% of maximum Life per second" }, } }, - ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, - ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(40-50)% faster start of Energy Shield Recharge" }, } }, - ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, - ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (15-25)% reduced Critical Damage Bonus" }, } }, - ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(15-25)% of Armour also applies to Elemental Damage" }, } }, - ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-14)% of Damage taken Recouped as Life" }, } }, - ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(10-15)% reduced Elemental Ailment Duration on you" }, } }, - ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 5388 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2251279027] = { "+1 to Level of all Corrupted Skill Gems" }, } }, - ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 6% of Physical Damage as Life" }, } }, - ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7436 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, - ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7186 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, - ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (34-43) Life per enemy killed" }, } }, - ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, - ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, - ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-40)% increased Stun Buildup" }, } }, - ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, - ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, - ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7235 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, - ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7184 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, - ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, - ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1646 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["TalismanImplicitMaximumRage1"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, - ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(10-15)% to Block chance" }, } }, - ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, - ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, - ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, - ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, - ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6123 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, - ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 974 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "(15-25)% chance to Blind Enemies on hit" }, } }, - ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, - ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 8 Mana per Enemy Hit" }, } }, - ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches 4% of Physical Damage as Mana" }, } }, - ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7146 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, - ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7155 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, - ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, - ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-18)% to Block chance" }, } }, - ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, - ["BowImplicitLocalChanceToChain1"] = { affix = "", "(20-30)% chance to Chain an additional time", statOrder = { 7134 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(20-30)% chance to Chain an additional time" }, } }, - ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, - ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8966 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, - ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1480 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, - ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6501 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(20-30)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+16 to Stun Threshold" }, } }, - ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1247628870] = { "1% increased maximum Mana" }, } }, - ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1809641701] = { "1% increased maximum Life" }, } }, - ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1316656343] = { "+8 to maximum Life" }, } }, - ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1294464552] = { "+8 to maximum Mana" }, } }, - ["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [3474941090] = { "(4-6)% reduced Ignite Duration on you" }, } }, - ["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [860443350] = { "(4-6)% reduced Freeze Duration on you" }, } }, - ["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1627878766] = { "(4-6)% reduced Shock duration on you" }, } }, - ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 1, tradeHashes = { [2948688907] = { "+(2-4)% to Fire Resistance" }, } }, - ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 1, tradeHashes = { [2884937919] = { "+(2-4)% to Cold Resistance" }, } }, - ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 1, tradeHashes = { [3994876825] = { "+(2-4)% to Lightning Resistance" }, } }, - ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 1, tradeHashes = { [2264240911] = { "+(2-3)% to Chaos Resistance" }, } }, - ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [4151994709] = { "+1% to Maximum Fire Resistance" }, } }, - ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [1862508014] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [2217513089] = { "+1% to Maximum Lightning Resistance" }, } }, - ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 2, tradeHashes = { [1731760476] = { "+1% to Maximum Chaos Resistance" }, } }, - ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [1842384813] = { "(2-3)% increased Strength" }, } }, - ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [40618390] = { "(2-3)% increased Intelligence" }, } }, - ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [2717786748] = { "(2-3)% increased Dexterity" }, } }, - ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 873 }, level = 1, group = "JewelSpirit", weightKey = { }, weightVal = { }, modTags = { }, nodeType = 2, tradeHashes = { [3991877392] = { "+(8-12) to Spirit" }, } }, - ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHashes = { [338620903] = { "Gain (2-4)% of Damage as Extra Fire Damage" }, } }, - ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHashes = { [833138896] = { "Gain (2-4)% of Damage as Extra Cold Damage" }, } }, - ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHashes = { [852470634] = { "Gain (2-4)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHashes = { [2603051299] = { "Gain (2-4)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "-(20-10) to Strength" }, } }, - ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-15) to Strength" }, } }, - ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-10) to Strength" }, } }, - ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(0-10) to Strength" }, } }, - ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-30) to Strength" }, } }, - ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, - ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength40"] = { affix = "", "+(8-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-15) to Strength" }, } }, - ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength44"] = { affix = "", "+(25-40) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-40) to Strength" }, } }, - ["UniqueStrength45"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["UniqueStrength46"] = { affix = "", "+(30-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["UniqueStrength47"] = { affix = "", "+(15-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, - ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(0-10) to Dexterity" }, } }, - ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-15) to Dexterity" }, } }, - ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, - ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(0-10) to Intelligence" }, } }, - ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, - ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["UniqueIntelligence44"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, - ["UniqueIntelligence45"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, - ["UniqueIntelligence46"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(50-100) to all Attributes" }, } }, - ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["UniqueAllAttributes18"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(20-10)% to Fire Resistance" }, } }, - ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(0-10)% to Fire Resistance" }, } }, - ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(15-10)% to Fire Resistance" }, } }, - ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, - ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-40-40)% to Fire Resistance" }, } }, - ["UniqueFireResist25"] = { affix = "", "+(50-100)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-100)% to Fire Resistance" }, } }, - ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, - ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(20-10)% to Cold Resistance" }, } }, - ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, - ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, - ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, - ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(0-10)% to Cold Resistance" }, } }, - ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, - ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, - ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-40-40)% to Cold Resistance" }, } }, - ["UniqueColdResist21"] = { affix = "", "+(50-100)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-100)% to Cold Resistance" }, } }, - ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(15-10)% to Cold Resistance" }, } }, - ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-10% to Cold Resistance" }, } }, - ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-15% to Cold Resistance" }, } }, - ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, - ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, - ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(0-10)% to Lightning Resistance" }, } }, - ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(40-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-40-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-100)% to Lightning Resistance" }, } }, - ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, - ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-15)% to Lightning Resistance" }, } }, - ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-33)% to Lightning Resistance" }, } }, - ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-30% to all Elemental Resistances" }, } }, - ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-(20-5)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-40)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueAllResistances27"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-37)% to Chaos Resistance" }, } }, - ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(23-3)% to Chaos Resistance" }, } }, - ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-17% to Chaos Resistance" }, } }, - ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+13% to Chaos Resistance" }, } }, - ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, - ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, - ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1500 to maximum Life" }, } }, - ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-30) to maximum Life" }, } }, - ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+300 to maximum Life" }, } }, - ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-150) to maximum Life" }, } }, - ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 869 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-80) to maximum Life" }, } }, - ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["UniqueIncreasedLife51"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, - ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["UniqueIncreasedLife55"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueIncreasedLife56"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(20-30)% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease4"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 870 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["UniqueMaximumLifeIncrease8"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, - ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(0-20) to maximum Mana" }, } }, - ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-150) to maximum Mana" }, } }, - ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-90) to maximum Mana" }, } }, - ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-45) to maximum Mana" }, } }, - ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, - ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, - ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["UniqueMaximumManaIncrease1"] = { affix = "", "(10-15)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } }, - ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, - ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, - ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(150-200) to Armour" }, } }, - ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(75-125) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(40-50) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+100 to Evasion Rating" }, } }, - ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(300-600) to Evasion Rating" }, } }, - ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, - ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(25-50)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(0-40) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(40-60) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(15-25) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(50-70) to Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+20 to Armour" }, } }, - ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(50-70) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(0-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(15-25) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+100 to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(0-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 833 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(80-120) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(75-150) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShield18"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 832, 833 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(60-100) to Evasion Rating" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(20-25) to Evasion Rating" }, [4052037485] = { "+(10-15) to maximum Energy Shield" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(700-800)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(700-800)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(30-60)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(30-50)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(80-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(400-500)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(120-160)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(300-400)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(300-400)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "50% reduced Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-140)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(250-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(250-300)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(70-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-300)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-200)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(200-250)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEvasionRatingPercent34"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(30-50)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-200)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(70-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedEnergyShieldPercent27"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(30-50)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(50-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(20-30)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(50-70)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(300-450)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(300-450)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "50% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(600-800)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-200)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(30-60)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(40-60)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(333-666)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(30-60)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(50-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(40-60)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(60-120)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(60-100)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(50-70)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(1-111)% increased Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(300-400)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(300-400)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(150-200)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(100-150)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(100-150)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, - ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(40-60) to Stun Threshold" }, } }, - ["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(30-50) to Stun Threshold" }, } }, - ["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, - ["UniqueStunThreshold4"] = { affix = "", "+(75-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(75-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold5"] = { affix = "", "+(50-70) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(50-70) to Stun Threshold" }, } }, - ["UniqueStunThreshold6"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, - ["UniqueStunThreshold7"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold8"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold9"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold10"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold11"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold12"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, - ["UniqueStunThreshold13"] = { affix = "", "+2500 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+2500 to Stun Threshold" }, } }, - ["UniqueStunThreshold14"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, - ["UniqueStunThreshold15"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold16"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, - ["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, - ["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, - ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, - ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueMovementVelocity17"] = { affix = "", "(15-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-30)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, - ["UniqueMovementVelocity26"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 4948 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, - ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (35-53) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (31-49) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (31-49) Physical Thorns damage" }, } }, - ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (8-10) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (5-6) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-16) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (13-17) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-5) to (6-8) Cold damage to Attacks" }, } }, - ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (13-20) to (21-31) Cold damage to Attacks" }, } }, - ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, - ["UniqueAddedLightningDamage2UNUSED"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-100) Lightning damage to Attacks" }, } }, - ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, - ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (4-6) to (8-10) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-19) to (20-30) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-8) to (10-12) Chaos Damage to Attacks" }, } }, - ["UniqueAddedChaosDamage4"] = { affix = "", "Adds (35-44) to (50-62) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (35-44) to (50-62) Chaos Damage to Attacks" }, } }, - ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-10) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-18) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (6-8) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-20) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-14) to (16-20) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (8-10) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-15) to (22-25) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (24-28) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-15) to (22-25) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (58-65) to (102-110) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-36) to (75-81) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-48) to (65-72) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (40-50) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-15) to (18-24) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (39-48) to (69-79) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-26) to (25-31) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (22-28) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-26) to (27-32) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-18) to (30-36) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (21-26) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-52) to (71-82) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-30) to (35-55) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-47) to (53-79) Physical Damage" }, } }, - ["UniqueLocalAddedPhysicalDamage27"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, - ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (33-41) to (47-53) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (8-10) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-32) to (40-50) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (15-21) to (26-32) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (126-193) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (71-93) to (107-168) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage7"] = { affix = "", "Adds (503-589) to (647-713) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (503-589) to (647-713) Fire Damage" }, } }, - ["UniqueLocalAddedFireDamage8"] = { affix = "", "Adds (83-97) to (123-153) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (83-97) to (123-153) Fire Damage" }, } }, - ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (15-18) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (16-20) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-16) to (22-25) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (13-15) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-15) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-18) to (24-29) Cold Damage" }, } }, - ["UniqueLocalAddedColdDamage7"] = { affix = "", "Adds (24-31) to (36-46) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (24-31) to (36-46) Cold Damage" }, } }, - ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (80-120) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-45) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-55) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-80) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (19-29) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (300-500) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (300-500) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (133-247) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (133-247) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage8"] = { affix = "", "Adds 1 to (193-207) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (193-207) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage9"] = { affix = "", "Adds (1-5) to (66-90) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-5) to (66-90) Lightning Damage" }, } }, - ["UniqueLocalAddedLightningDamage10"] = { affix = "", "Adds 1 to (110-115) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (110-115) Lightning Damage" }, } }, - ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (25-36) to (44-55) Chaos damage" }, } }, - ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (167-201) to (267-333) Chaos damage" }, } }, - ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 883 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage" }, } }, - ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 884 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage" }, } }, - ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 885 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage" }, } }, - ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-20)% increased Global Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-160)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-200)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-240)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(600-700)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(70-100)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(90-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-120)% increased Physical Damage" }, } }, - ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal 50% increased Damage" }, } }, - ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon9"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon10"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueSpellDamageOnWeapon11"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, - ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(80-120)% increased Fire Damage" }, } }, - ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(80-120)% increased Cold Damage" }, } }, - ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-120)% increased Lightning Damage" }, } }, - ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-3) to Level of all Spell Skills" }, } }, - ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(1-4) to Level of all Fire Skills" }, } }, - ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, } }, - ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+(2-4) to Level of all Lightning Skills" }, } }, - ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2901213448] = { "+(2-4) to Level of all Elemental Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, - ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 5540 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [805298720] = { "+(1-2) to Level of all Curse Skills" }, } }, - ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, - ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(7-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(0-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(20-25) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-25) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6-10) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(30-60) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(5-10) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(25-35) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-30) Life Regeneration per second" }, } }, - ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "5 Life Regeneration per second" }, } }, - ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "100% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration8"] = { affix = "", "(50-100)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-100)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% reduced Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "25% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "40% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(-30-30)% reduced Mana Regeneration Rate" }, } }, - ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 5% of Physical Attack Damage as Life" }, } }, - ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-8)% of Physical Damage as Life" }, } }, - ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 10% of Physical Damage as Life" }, } }, - ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (10-20)% of Physical Damage as Life" }, } }, - ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-7)% of Physical Damage as Mana" }, } }, - ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 3 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-15) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 30 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-10) Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose 10 Life per enemy killed" }, } }, - ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (30-50) Life per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Lose 3 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-10) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (12-18) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 5 Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, - ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 25 Life per Enemy Hit with Attacks" }, } }, - ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 15 Mana per Enemy Hit with Attacks" }, } }, - ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-6)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-11)% increased Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "35% reduced Attack Speed" }, } }, - ["UniqueIncreasedAttackSpeed15"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(30-40)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-16)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed24"] = { affix = "", "(7-13)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-13)% increased Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed25"] = { affix = "", "(6-12)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-12)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed26"] = { affix = "", "(15-20)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% reduced Attack Speed" }, } }, - ["UniqueLocalIncreasedAttackSpeed27"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, - ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (10-20)% increased Attack Speed" }, } }, - ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 942 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-8)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-30)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (10-20)% increased Cast Speed" }, } }, - ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(0-60) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(60-100) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-200) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-400) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-600) to Accuracy Rating" }, } }, - ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-(300-200) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-70) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-100) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(100-150) to Accuracy Rating" }, } }, - ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-500) to Accuracy Rating" }, } }, - ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(0-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-35)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(100-200)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+15% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-10)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-6)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, - ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-7)% to Critical Hit Chance" }, } }, - ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-40)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-30)% increased Critical Hit Chance" }, } }, - ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-50)% increased Critical Hit Chance" }, } }, - ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-15)% increased Critical Damage Bonus" }, } }, - ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-25)% to Critical Damage Bonus" }, } }, - ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-30)% to Critical Damage Bonus" }, } }, - ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-50)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(20-30)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-50)% increased Critical Damage Bonus" }, } }, - ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(0-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-25-25)% reduced Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius4"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["UniqueLightRadius5"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["UniqueLightRadius6"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["UniqueLightRadius7"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius8"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius9"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius10"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius11"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius12"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["UniqueLightRadius13"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, - ["UniqueLightRadius14"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius15"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["UniqueLightRadius16"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["UniqueLightRadius17"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% reduced Light Radius" }, } }, - ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "23% reduced Light Radius" }, } }, - ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(80-100)% increased Block chance" }, } }, - ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-20)% increased Block chance" }, } }, - ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-25)% increased Block chance" }, } }, - ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(30-50)% increased Block chance" }, } }, - ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, - ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "30% reduced Block chance" }, } }, - ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, - ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, - ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+30 to Spirit" }, } }, - ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(25-35) to Spirit" }, } }, - ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(0-20) to Spirit" }, } }, - ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-40) to Spirit" }, } }, - ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-40) to Spirit" }, } }, - ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-50) to Spirit" }, } }, - ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-30) to Spirit" }, } }, - ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(100-150) to Spirit" }, } }, - ["UniqueIncreasedSpirit14"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, - ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(25-35)% increased Spirit" }, } }, - ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, - ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, - ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(30-50)% reduced Shock duration on you" }, } }, - ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% reduced Chill Duration on you" }, } }, - ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(30-50)% reduced Freeze Duration on you" }, } }, - ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "15% additional Physical Damage Reduction" }, } }, - ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, - ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, - ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, - ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to Maximum Lightning Resistance" }, } }, - ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-(5-1)% to all Maximum Elemental Resistances" }, } }, - ["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(20-30)% reduced Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate4"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate5"] = { affix = "", "(50-100)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(50-100)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "1000% increased Energy Shield Recharge Rate" }, } }, - ["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, - ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(15-25)% chance to Pierce an Enemy" }, } }, - ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 3 additional Arrows" }, } }, - ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2478 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2720781168] = { "Attack Projectiles Return if they Pierced at least (2-4) times" }, } }, - ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 8990 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, - ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 8980 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, - ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(30-50)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(40-60)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% reduced Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(-25-25)% reduced Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(15-35)% increased Flask Life Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(40-60)% increased Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(-25-25)% reduced Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "50% increased Flask Charges used" }, } }, - ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, - ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, - ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, - ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2582079000] = { "+(0-2) Charm Slot" }, } }, - ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2582079000] = { "+(1-2) Charm Slot" }, } }, - ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2968503605] = { "50% increased Flammability Magnitude" }, } }, - ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2968503605] = { "(30-50)% increased Flammability Magnitude" }, } }, - ["UniqueFreezeDamageIncrease1"] = { affix = "", "30% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [473429811] = { "30% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [473429811] = { "(40-50)% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [473429811] = { "(30-50)% increased Freeze Buildup" }, } }, - ["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, - ["UniqueShockChanceIncrease4"] = { affix = "", "(20-40)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293638271] = { "(20-40)% increased chance to Shock" }, } }, - ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 987 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [748522257] = { "(10-20)% increased Stun Duration" }, } }, - ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(30-50)% increased Stun Buildup" }, } }, - ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(20-30)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (150-200)% increased Stun Buildup" }, } }, - ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, - ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8370 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, - ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, - ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, - ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, } }, - ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% reduced Cold Damage" }, } }, - ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-30)% increased Elemental Damage" }, } }, - ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "100% increased Elemental Damage with Attacks" }, } }, - ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(40-60)% increased Projectile Speed" }, } }, - ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(5-30)% of Damage taken Recouped as Life" }, } }, - ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "50% of Damage taken Recouped as Mana" }, } }, - ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-30)% of Damage taken Recouped as Mana" }, } }, - ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (40-60)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain 25% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (30-50)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain 25% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageGainedAsCold2"] = { affix = "", "Gain (15-25)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-25)% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain 25% of Damage as Extra Lightning Damage" }, } }, - ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain 27% of Damage as Extra Chaos Damage" }, } }, - ["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, - ["UniquePresenceRadius4"] = { affix = "", "(30-40)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(30-40)% reduced Presence Area of Effect" }, } }, - ["UniquePresenceRadius5"] = { affix = "", "(60-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(60-80)% increased Presence Area of Effect" }, } }, - ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 930 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1202301673] = { "+(1-2) to Level of all Projectile Skills" }, } }, - ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(1-2) to Level of all Melee Skills" }, } }, - ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1828 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2609822974] = { "Curses you inflict have infinite Duration" }, } }, - ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, - ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 50% reduced maximum Life" }, } }, - ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-100)% increased Damage" }, } }, - ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, - ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, - ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(100-150)% increased Charges per use" }, } }, - ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-15)% reduced Charges per use" }, } }, - ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 911 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "" }, } }, - ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 610 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1873752457] = { "Gains (0.15-0.2) Charges per Second" }, } }, - ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2541588185] = { "(15-25)% increased Duration" }, } }, - ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2541588185] = { "(10-20)% increased Duration" }, } }, - ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389754388] = { "(10-50)% reduced Charm Effect Duration" }, } }, - ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 5803 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, - ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, - ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 1% of maximum Life on Kill" }, } }, - ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (2-4)% of maximum Life on Kill" }, } }, - ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 1% of maximum Mana on Kill" }, } }, - ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 9651 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, - ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9650 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, - ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 8895 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, - ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7137 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7144 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, - ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, - ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4401 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, - ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 9778, 9778.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, - ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3877 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2356156926] = { "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life" }, } }, - ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3878 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [65133983] = { "Drop Shocked Ground while moving, lasting 8 seconds" }, } }, - ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2967 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5168 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, - ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 9456 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, - ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "25% increased Block chance" }, } }, - ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "(10-15)% increased Block chance" }, } }, - ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+(5-10)% to maximum Block chance" }, } }, - ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-(20-10)% to maximum Block chance" }, } }, - ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 6994 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, - ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1479 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(50-100)% increased Arrow Speed" }, } }, - ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2128 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "40% less Attack Damage" }, } }, - ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6024 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, - ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, - ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6220 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, - ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7458 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, - ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7455 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, - ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5109 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, - ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 9813 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, - ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 9814 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, - ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(100-150)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2806 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4112450013] = { "Moving while Bleeding doesn't cause you to take extra damage" }, } }, - ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2470 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6301, 6301.1, 6301.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, - ["UniqueIncreasedArmourWhileShapeshifted1"] = { affix = "", "(30-50)% increased Armour while Shapeshifted", statOrder = { 4270 }, level = 1, group = "IncreasedArmourWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1364201165] = { "(30-50)% increased Armour while Shapeshifted" }, } }, - ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 8916 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, - ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4024 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, - ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, - ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["UniqueAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 1, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [958696139] = { "Grants 1 additional Skill Slot" }, } }, - ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 8790 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (75-80)%" }, } }, - ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 8674 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, - ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, - ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5516 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, - ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4060 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, - ["UniqueUnarmedMoreDamageWithMaceSkills1"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-800)% more Physical Damage with Unarmed Melee Attacks" }, } }, - ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, - ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6434 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, - ["UniqueIgniteDuration1"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "50% reduced Ignite Duration on Enemies" }, } }, - ["UniqueIgniteEffect1"] = { affix = "", "50% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "50% increased Ignite Magnitude" }, } }, - ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, - ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, - ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5973 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, } }, - ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, - ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5569 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, - ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-50)% increased Damage" }, } }, - ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Life Flasks do not recover Life", statOrder = { 4574 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Life Flasks do not recover Life" }, } }, - ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 8782 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, - ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, - ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5371 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, - ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9344 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, - ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6084 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, - ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7140 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, - ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7141 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, - ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7139 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, - ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7185 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, - ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 100% increased Damage" }, } }, - ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3740 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "20% less Damage taken if you have not been Hit Recently" }, } }, - ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 9772 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, - ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, - ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2542 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 6 seconds after being Chilled" }, } }, - ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2544 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 6 seconds after being Frozen" }, } }, - ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2545 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 6 seconds after being Ignited" }, } }, - ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2546 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 6 seconds after being Shocked" }, } }, - ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5548 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, - ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, - ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% reduced Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(5-10)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(15-30)% increased Skill Speed" }, } }, - ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9227 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, - ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 8791 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, - ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 5699 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, - ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4153 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, - ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4052 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, - ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+10% to Block chance" }, } }, - ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(15-25)% to Block chance" }, } }, - ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-10 Physical damage taken from Projectile Attacks" }, } }, - ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "20% reduced Mana Cost of Skills" }, } }, - ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "10% increased Mana Cost of Skills" }, } }, - ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4578 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, - ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 9512 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, - ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, - ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(8-15)% increased Area of Effect" }, } }, - ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-30)% increased Strength" }, } }, - ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, - ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "10% reduced Dexterity" }, } }, - ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, - ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "10% reduced Intelligence" }, } }, - ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, - ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(35-50)% reduced Effect of Chill on you" }, } }, - ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, - ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 9655 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, - ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7222 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, - ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9365 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, - ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 9437 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, - ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 923 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2061237517] = { "+(3-5) to Level of all Corrupted Spell Skill Gems" }, } }, - ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 8788 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, - ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.5% of maximum Life per second per Endurance Charge" }, } }, - ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, - ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "12% increased Critical Damage Bonus per Power Charge" }, } }, - ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, - ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [795138349] = { "(10-20)% chance to Poison on Hit" }, } }, - ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 9435 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, - ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9197 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell" }, } }, - ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 5704 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, - ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-10 Physical Damage taken from Attack Hits" }, } }, - ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, - ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1687 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4187571952] = { "Gain no inherent bonus from Intelligence" }, } }, - ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 1944 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 3956, 3957, 3958, 3959, 6428 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, - ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "30% slower start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "100% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, - ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5268 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, - ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2129 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3316 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1419390131] = { "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently" }, } }, - ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, - ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, - ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences", "minion" }, tradeHashes = { [943702197] = { "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 6785 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, - ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 8929 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2505 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, - ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2112395885] = { "(100-200)% increased amount of Life Leeched" }, } }, - ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1095 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2423248184] = { "(30-40)% less minimum Physical Attack Damage" }, } }, - ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1094 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3735888493] = { "(30-40)% more maximum Physical Attack Damage" }, } }, - ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% reduced Attribute Requirements" }, } }, - ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% increased Attribute Requirements" }, } }, - ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2221 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4245256219] = { "Skill Gems have no Attribute Requirements" }, } }, - ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2220 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480151124] = { "Equipment has no Attribute Requirements" }, } }, - ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, - ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 6917 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, - ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3172 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5180 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Hit" }, } }, - ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "50% increased Strength Requirement" }, } }, - ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 9476 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, - ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 609 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2980117882] = { "This Flask cannot be Used but applies its Effect constantly" }, } }, - ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5111 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, - ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 8588 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, - ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3030 }, 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" }, } }, - ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7230 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, - ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7147 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, - ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4288 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, - ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Fire Exposure when this Weapon Fully Breaks Armour", statOrder = { 7149 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3439162551] = { "Inflicts Fire Exposure when this Weapon Fully Breaks Armour" }, } }, - ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, } }, - ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7350 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, - ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10009 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, - ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 9997 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, - ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4598 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, - ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 8789 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, - ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 8649 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, - ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7145 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, - ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7143 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, - ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 899 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4287671144] = { "50% of your Base Life Regeneration is granted to Allies in your Presence" }, } }, - ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 9776, 9776.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, - ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8297 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, - ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 9980 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, - ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6274 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, - ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4424 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, - ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2508 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" }, } }, - ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2509 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" }, } }, - ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2510 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance" }, } }, - ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" }, } }, - ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills gain a Base Life Cost equal to 10% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 10% of Base Mana Cost" }, } }, - ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, - ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2117 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5475 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, - ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5443 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, - ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage", statOrder = { 6812 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage" }, } }, - ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, - ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 9779 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93764325] = { "Damage cannot bypass Energy Shield" }, } }, - ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4128 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, - ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4559 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, - ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6345 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, - ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, - ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4120 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, - ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 6997 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, - ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8357 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, - ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 8986 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, - ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, - ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching maximum Power Charges" }, } }, - ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3179 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach maximum Power Charges" }, } }, - ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8451 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, - ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2112 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2492660287] = { "Reserves 15% of Life" }, } }, - ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2126 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "20% of Elemental damage from Hits taken as Chaos damage" }, } }, - ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 2968 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, - ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "25% reduced Endurance Charge Duration" }, } }, - ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9087 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, - ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, - ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9338 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, - ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, - ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1412 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 9414 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, - ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7008 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, - ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "50% of Damage is taken from Mana before Life" }, } }, - ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2148 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, - ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4160 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4161 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, - ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4162 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, - ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4163 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, - ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4516 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, - ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7094 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, - ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 5950 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, - ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(30-50)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8286 }, 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" }, } }, - ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 6974 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, - ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 6989 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 6973 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, - ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 9784 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, - ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 9783 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, - ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, - ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, - ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, - ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2682 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover 4% of maximum Life when you Block" }, } }, - ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 5966 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, - ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 9801 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, - ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 8592, 8592.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, - ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 6975 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7493 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, - ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 8693 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (5-10)% of Damage as Extra Fire Damage" }, } }, - ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 8692 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (5-10)% of Damage as Extra Cold Damage" }, } }, - ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (30-40)% of Damage as Extra Chaos Damage" }, } }, - ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 8709 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHashes = { [261503687] = { "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage" }, } }, - ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2652 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "300 Physical Damage taken on Minion Death" }, } }, - ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 9782 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, - ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4177 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, - ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "200% increased Stun Recovery" }, } }, - ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2348 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3811649872] = { "Increases and Reductions to Spell damage also apply to Attacks" }, } }, - ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4577 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, - ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% reduced Totem Life" }, } }, - ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5386 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, - ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-30)% increased Warcry Speed" }, } }, - ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 9891 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, - ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "25% increased Totem Placement speed" }, } }, - ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3354 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-150)% to Melee Critical Damage Bonus" }, } }, - ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1885 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-30 Physical Damage taken from Hits" }, } }, - ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6432 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, - ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9044 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, - ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Defences", statOrder = { 2486 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "30% reduced Global Defences" }, } }, - ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2734 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7024 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, - ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 8559 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, - ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5682 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, - ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6307, 6307.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, - ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 3989 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, - ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, - ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, - ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3874 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, - ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3322 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, - ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5558 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, - ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "40% increased Mana Regeneration Rate while stationary" }, } }, - ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1228337241] = { "Gain (10-15)% of maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "10% of Damage taken bypasses Energy Shield" }, } }, - ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6008 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, - ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 6990 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, - ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 9798, 9798.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, - ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, - ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, - ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Hits do not deal extra Damage" }, } }, - ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Critical Hits do not deal extra Damage", statOrder = { 7332 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1508661598] = { "Critical Hits do not deal extra Damage" }, } }, - ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, - ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, - ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, - ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 4192, 4192.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2224139044] = { "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted" }, } }, - ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 5991 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, - ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "30% reduced Reload Speed" }, } }, - ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(7-14)% increased Reload Speed" }, } }, - ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5509, 5509.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, - ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 9809 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, - ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3684 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "-15 Strength Requirement" }, } }, - ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, - ["UniqueStrengthRequirements4"] = { affix = "", "+25 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+25 Strength Requirement" }, } }, - ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+50 Dexterity Requirement" }, } }, - ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+100 Intelligence Requirement" }, } }, - ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5278 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7224 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, - ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7227 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, - ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7226 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, - ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 7170 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4031148736] = { "You can only Socket Ruby Jewels in this item" }, } }, - ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 7169 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3598729471] = { "You can only Socket Emerald Jewels in this item" }, } }, - ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 7171 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [21302430] = { "You can only Socket Sapphire Jewels in this item" }, } }, - ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6163 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, - ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5324 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, - ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7093 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, - ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7225 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, - ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7223 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, - ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 5801 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, - ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 3987, 3988 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350232544] = { "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently" }, [57896763] = { "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently" }, } }, - ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6081 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, - ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3038 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1094937621] = { "Critical Hits ignore Enemy Monster Elemental Resistances" }, } }, - ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3027830452] = { "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5142 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, - ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 12 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, - ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of charges used by Charms granted to your Life Flasks", statOrder = { 5228 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369960685] = { "50% of charges used by Charms granted to your Life Flasks" }, } }, - ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065505214] = { "(66-333)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9032 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6284 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, - ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7448 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4563 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, - ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7012 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9098 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, - ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4579 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, - ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 6893 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, - ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 6889 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, - ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, - ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5314 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, - ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 6895 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, - ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 5944 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, - ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 5939 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 9780 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, - ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5183 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, - ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7315 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7314 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7342 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7343 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 8992 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7360 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, - ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6520, 6520.1, 6520.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, - ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4524 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, - ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5257 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, - ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4123 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, - ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, - ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 8668 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, - ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7355 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, - ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7325 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, - ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7327 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, - ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Defences per Socket filled", statOrder = { 7242 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1225174187] = { "(9-12)% increased Global Defences per Socket filled" }, } }, - ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7278 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, - ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7340 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, - ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7138 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, - ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7163 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, - ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7164 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, - ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7160 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, - ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7136 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, - ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7357 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, - ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7162 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, - ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7165 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, - ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7321, 7321.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, - ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7111 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, - ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5512 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 9781 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, - ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 5802 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, - ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 9800 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, - ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4168 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, - ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 897 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, - ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 5943 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, - ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 5940 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, - ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 2969 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2415497478] = { "(10-30)% chance to Avoid Physical Damage from Hits" }, } }, - ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 2974 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1563503803] = { "(10-30)% chance to Avoid Chaos Damage from Hits" }, } }, - ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(10-30)% chance to Avoid Fire Damage from Hits" }, } }, - ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 2972 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(10-30)% chance to Avoid Cold Damage from Hits" }, } }, - ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 2973 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(10-30)% chance to Avoid Lightning Damage from Hits" }, } }, - ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 8839 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, - ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7363 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, - ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7362 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, - ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7364 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 629, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, - ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, - ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6046 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, - ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6044 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, - ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6045 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, - ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 5946 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, - ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5504 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, - ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2614 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 75% Cold Resistance" }, } }, - ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4778 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, - ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6073 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, - ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6007 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, - ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4144 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, - ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2520 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Chaos Damage from Hits also Contributes to Freeze Buildup" }, } }, - ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4535 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, - ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8422 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, - ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 8526 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, - ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2123 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 5933 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+1 Charm Slot", statOrder = { 8739 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+1 Charm Slot" }, } }, - ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(17-23)% to Chaos Resistance" }, } }, - ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2228 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, - ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, - ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 9806 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, - ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 5984 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, - ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8300 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, - ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 5811 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, - ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8349 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, - ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 9807, 9807.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, - ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 6968 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, - ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 5885 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [2340750293] = { "(20-30)% of Elemental damage from Hits taken as Physical damage" }, } }, - ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4794 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, - ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 4887 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, - ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6454 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4170 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 5951 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 5947 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3840716439] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, - ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 5942 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, - ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 9804 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, - ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 5948 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, - ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, - ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, - ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4116, 4116.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, - ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4299 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, - ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9320 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, - ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 4937 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, - ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 6822 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, - ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 9625 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, - ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 8648 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7527 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, - ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 5698 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, - ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7006 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, - ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6423 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, - ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7449 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, - ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 8669 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2771095426] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, - ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1407 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2593644209] = { "-10% to all Elemental Resistances per Power Charge" }, } }, - ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+2 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+3 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+1 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+3 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+1 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, - ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+2 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, - ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4203 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, - ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9182, 9182.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 3 seconds" }, } }, - ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3159 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4313 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, - ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, - ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1350 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3739186583] = { "Knocks Back Enemies on Hit" }, } }, - ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9438 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, - ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 3990 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1354656031] = { "Withered you inflict has infinite Duration" }, } }, - ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7241 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, - ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6524 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, - ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6525 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, - ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6523 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, - ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6522 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, - ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4500 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, - ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4505 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, - ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-20)% chance to cause Bleeding on Hit" }, } }, - ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 4954 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, - ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4149 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, - ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 8903 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, - ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 9424, 9424.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, - ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 4907 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, - ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 4908 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, - ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4587 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4447 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 8651 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, - ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 9986 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, - ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10016 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, - ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5344 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, - ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4573 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, - ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 9412 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, - ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9394 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, - ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% increased Life Regeneration rate" }, } }, - ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(-30-30)% reduced Life Regeneration rate" }, } }, - ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 9802 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, - ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 4871 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, - ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 8550 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, - ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 5816 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, - ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, - ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6013 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, - ["UniqueShockEffect1UNUSED"] = { affix = "", "(50-100)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(50-100)% increased Magnitude of Shock you inflict" }, } }, - ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4438 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, - ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8654 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, - ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4789 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, - ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5538 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8795 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, - ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 8806 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, - ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 8804 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, - ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, - ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4205 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, - ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, - ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 6777 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, - ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 6776 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, - ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 6778 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, - ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9917 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, - ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 3954, 3954.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, - ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1683 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, - ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1684 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, - ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1685 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9777, 9777.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5372 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, - ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5427 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, - ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5428 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, - ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4944 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, - ["UniqueLifeRecoveryRate1"] = { affix = "", "100% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "100% increased Life Recovery rate" }, } }, - ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, - ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 6996 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, - ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6292 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, - ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4371 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, - ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9210 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, - ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9366 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, - ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7142 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, - ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9229 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, - ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 4880 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, - ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4129 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, - ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7135 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, - ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, - ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2393 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7151 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, - ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, - ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6885 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, - ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, - ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1845 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, - ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1846 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, - ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3336 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (10-12) additional Attack Physical Damage" }, } }, - ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, - ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 8710 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, - ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 4882 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, - ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5525 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, - ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4785 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, - ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, - ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6815 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, - ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6746 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6293, 6293.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, - ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7190 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, - ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, - ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, - ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, - ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 4946 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7265 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, - ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4602 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 8647 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, - ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4333 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, - ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4334 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, - ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, - ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 1933 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3507701584] = { "+4 to Level of Vulnerability Skills" }, } }, - ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1907 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2157870819] = { "+4 to Level of Despair Skills" }, } }, - ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1909 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3948285912] = { "+4 to Level of Enfeeble Skills" }, } }, - ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 1932 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1042153418] = { "+4 to Level of Temporal Chains Skills" }, } }, - ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5240 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, - ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5239 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, - ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5238 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, - ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5231 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, - ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5237 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, - ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5236 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5230 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, - ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5252 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, - ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5253 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, - ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5241 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, - ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5235 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, - ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5254 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, - ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5248 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, - ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5245 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, - ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5249 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, - ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5247 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, - ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5242 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, - ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5243 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, - ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5246 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, - ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5251 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, - ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5250 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, - ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5244 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, - ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, - ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9459 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, - ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8702 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, - ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8703 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, - ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1642 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, - ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 8700 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, - ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 8699 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, - ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 8701 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, - ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8698 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, - ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10033 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, - ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10045 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10052 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, - ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10058 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, - ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10050 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10020 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, - ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1868522266] = { "(10-20)% less Defences" }, } }, - ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, - ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 14 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Instilled Modifiers" }, } }, - ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 8696 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, - ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 8695 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, - ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 8697 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, - ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1587 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, - ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9177 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, - ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "30% increased Chill Duration on Enemies" }, } }, - ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, - ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, - ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, - ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10022 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, - ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "25% increased Rarity of Items found" }, } }, - ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% increased Skill Speed" }, } }, - ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+500 to Spirit" }, } }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 946 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "2 Life Regeneration per second" }, } }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1842 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Hits" }, } }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, 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 = { 1833 }, 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 = { 1833 }, 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 = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 982 }, 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 = { 982 }, 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 = { 879 }, 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 = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(30-40)% reduced Flask Effect Duration" }, } }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 879 }, 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 = { 879 }, 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 = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "10% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1719 }, 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 = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1720 }, 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 = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1720 }, 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 = { 1720 }, 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 = { 876 }, 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 = { 876 }, 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 = { 876 }, 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 = { 877 }, 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 = { 877 }, 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 = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, 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 = { 1539 }, 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 = { 1539 }, 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 = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10024 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 52 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1860 }, 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 = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1855 }, 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 = { 1884 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1527 }, 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 = { 1527 }, 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 = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1563 }, 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 = { 1409 }, 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 = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3470876581] = { "+(150-250) to Evasion Rating while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of maximum Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of maximum Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1481 }, 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 = { 1481 }, 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 = { 1481 }, 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 = { 1481 }, 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 = { 1482 }, 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 = { 1482 }, 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 = { 1481 }, 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 = { 1481 }, 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 = { 1481 }, 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 = { 1482 }, 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 = { 1482 }, 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 = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1651 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, 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 = { 1651 }, 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 = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "100% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1605 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "50% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1115 }, 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 = { 1115 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10038 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 1884 }, 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 = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, 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 = { 954 }, 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 = { 954 }, 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 = { 953 }, 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 = { 953 }, 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 = { 955 }, 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 = { 955 }, 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 = { 1860 }, 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 = { 1896 }, 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 = { 1896 }, 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 Hit", statOrder = { 1510 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Hit" }, } }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1420 }, 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 = { 1420 }, 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 = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, 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 = { 318 }, 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 = { 318 }, 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 = { 318 }, 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 = { 318 }, 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 = { 329 }, 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 = { 326 }, 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 = { 327 }, 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 = { 327 }, 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 = { 327 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, - ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", statOrder = { 1934 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead" }, } }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1517 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Hit" }, } }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 1937 }, 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 = { 334 }, 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 = { 334 }, 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 = { 334 }, 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 = { 334 }, 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 = { 998 }, 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 = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, - ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-800)% more Physical Damage with Unarmed Melee Attacks" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 246 }, 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 = { 170 }, 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 = { 170 }, 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 = { 276 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10102 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 58 }, 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 = { 1060 }, 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 = { 1060 }, 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 = { 1060 }, 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 = { 1060 }, 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 = { 1060 }, 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 = { 1060 }, 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 = { 1403, 1404 }, 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 Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9288, 9289, 9292 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9292 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9288 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9289 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, 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 = { 377 }, 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 = { 377 }, 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 = { 132 }, 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 = { 383 }, 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 = { 1858 }, 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 = { 1858 }, 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 = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8708 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [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 = { 809, 2112 }, 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 = { 110 }, 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 cause double loss of Energy Shield", statOrder = { 2179 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, 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 = { 2115 }, 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 = { 2116 }, 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 = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", 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 = { 2119 }, 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 = { 2119 }, 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 = { 1861 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, } }, - ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1665 }, 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 = { 1665 }, 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 = { 2129 }, 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% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% to Block chance" }, } }, - ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+25% to Block chance" }, } }, - ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-4)% to Block chance" }, } }, - ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+15% to Block chance" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4517 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1061 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2135 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 378 }, 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 = { 378 }, 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 = { 378 }, 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 = { 378 }, 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 = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "2% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, 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 = { 2133 }, 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 = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 812 }, 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 = { 323 }, 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 = { 323 }, 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 = { 323 }, 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 = { 323 }, 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 = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2139 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, - ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(10-20)% reduced Skeleton Duration" }, } }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 818 }, 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 = { 2141 }, 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 = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [4082111882] = { "+1000 to Evasion Rating while on Full Life" }, } }, - ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, - ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, - ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 656 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2152 }, 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 = { 2153 }, 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 = { 2151 }, 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 = { 2153 }, 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 = { 2151 }, 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 = { 2153 }, 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 = { 2151 }, 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 = { 2153 }, 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 = { 2151 }, 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 = { 2153 }, 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 Hit", statOrder = { 7166 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2149 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2165 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1839 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, 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 Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, 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 = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1087 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__1"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2190 }, 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 Hit", statOrder = { 2180 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6505 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2201 }, 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 = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2207 }, 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 = { 1882 }, 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 = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, 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 = { 1878 }, 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 = { 1883 }, 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 = { 1880 }, 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 = { 1883 }, 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 = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1883 }, 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 = { 1880 }, 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 = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(10-20)% increased Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, 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 = { 1412 }, 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 = { 1530 }, 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 = { 330 }, 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 = { 330 }, 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 = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1572 }, 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 = { 1572 }, 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 = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1572 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-13-13)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "4% increased Skill Effect Duration" }, } }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 134 }, 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 = { 1484 }, 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 = { 1484 }, 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 = { 1484 }, 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 = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [660404777] = { "10% increased Evasion Rating per Frenzy Charge" }, } }, - ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, 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 = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1491 }, 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 = { 1491 }, 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 = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1791 }, 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 = { 1791 }, 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 = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1459 }, 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 = { 1459 }, 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 = { 1459 }, 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 = { 328 }, 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 = { 325 }, 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 Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 331 }, 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 = { 331 }, 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 = { 7067 }, 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 = { 7067 }, 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", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2188 }, 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 Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Damage Bonus" }, } }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2224 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2224 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 10% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 100% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% increased Attribute Requirements" }, } }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1835 }, 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 = { 1835 }, 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 = { 1835 }, 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 = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced effect of Curses on you" }, } }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, 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 = { 1434 }, 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 = { 1434 }, 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 = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 353 }, 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 = { 353 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, } }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2226 }, 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 = { 2227 }, 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 = { 2225 }, 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 = { 333 }, 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 = { 333 }, 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 = { 333 }, 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 = { 333 }, 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 = { 332 }, 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 = { 1788 }, 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 = { 1788 }, 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 = { 2228 }, 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 = { 5983 }, 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 = { 5983 }, 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 = { 5933 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2230 }, 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 = { 2229 }, 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 = { 1863 }, 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 = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1496 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+(-1-1) to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1806 }, 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 = { 1806 }, 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 = { 1804 }, 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 = { 1804 }, 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 = { 1804 }, 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 = { 2245 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [573884683] = { "100% chance to create Consecrated Ground when you Block" }, } }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2246 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, } }, - ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 159 }, 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 = { 159 }, 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 = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2528955616] = { "Gain (15-20) Energy Shield per enemy killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per enemy killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2528955616] = { "Gain (15-25) Energy Shield per enemy killed" }, } }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2255 }, 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 = { 5285 }, 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 = { 2256 }, 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 = { 1114 }, 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 = { 1114 }, 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 = { 1114 }, 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 = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2405 }, 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 = { 2217 }, 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 = { 2218 }, 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 = { 2338 }, 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 = { 2346 }, 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 = { 2346 }, 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 = { 1075 }, 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 = { 1076 }, 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 = { 1077 }, 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 = { 1075 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(30-50) to Strength and Dexterity" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+2 to Melee Strike Range" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+2 to Melee Strike Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+10 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1789 }, 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 = { 2295 }, 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 = { 2295 }, 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 = { 2295 }, 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 = { 2295 }, 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 = { 2295 }, 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 = { 2295 }, 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 = { 2297 }, 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 = { 2297 }, 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 = { 2297 }, 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 = { 2297 }, 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 = { 2297 }, 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 = { 2293 }, 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 = { 2300 }, 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 = { 2262 }, 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 = { 2302 }, 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 Hit", statOrder = { 2303 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Hit" }, } }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2304 }, 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 = { 2305 }, 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 = { 2312 }, 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 maximum Energy Shield per second", statOrder = { 2313 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of maximum Energy Shield per second" }, } }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2323 }, 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 = { 2316 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4263540840] = { "Left ring slot: You cannot Recharge or Regenerate Energy Shield" }, } }, - ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3594640492] = { "Regenerate 2% of maximum Energy Shield per second" }, } }, - ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2309 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, - ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, 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 = { 2307 }, 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 = { 1708 }, 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 maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of maximum Life per second per Frenzy Charge" }, } }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2465 }, 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 = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2291 }, 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 = { 1056 }, 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 = { 2257 }, 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 = { 2257 }, 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 = { 2257 }, 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 = { 2257 }, 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 = { 2257 }, 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 = { 1445 }, 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 = { 1446 }, 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 = { 1446 }, 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 = { 2260 }, 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 = { 10005 }, 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 = { 2261 }, 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 = { 2341 }, 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 = { 2343 }, 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 = { 2259 }, 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 = { 2263 }, 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 = { 2265 }, 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 = { 1641 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [268659529] = { "40% of Cold Damage Converted to Fire Damage" }, } }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited enemies killed by your Hits are destroyed", statOrder = { 2264 }, 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 Hit", statOrder = { 2340 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Hit" }, } }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Hits do not deal extra Damage" }, } }, - ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 777 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1740200922] = { "(20-30)% increased Rarity of Items found during Effect" }, } }, - ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 776 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3736953565] = { "(8-12)% increased Quantity of Items found during Effect" }, } }, - ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 779 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2745936267] = { "25% increased Light Radius during Effect" }, } }, - ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 766 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [4026156644] = { "+4% to all maximum Elemental Resistances during Effect" }, } }, - ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 782 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [3110554274] = { "+50% to Elemental Resistances during Effect" }, } }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2349 }, 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" }, } }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2337 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2357 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 2359 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1227 }, 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 = { 1227 }, 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 = { 1227 }, 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 = { 1227 }, 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 = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos damage" }, } }, - ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "450 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "250 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, - ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, - ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2361 }, 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 = { 2356 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, 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 = { 2355 }, 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 = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10104 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2236 }, 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 = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2242 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1124 }, 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 = { 1124 }, 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 = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, - ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "50% increased Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2363 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1208 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (75-100) to (165-200) Fire Damage in Main Hand" }, } }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1208 }, 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 (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1228 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (75-100) to (165-200) Chaos Damage in Off Hand" }, } }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1214 }, 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 = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 9812 }, 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 = { 7266 }, 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 = { 7266 }, 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 = { 2367 }, 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 = { 349 }, 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 = { 354 }, 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 = { 354 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, - ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 633 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHashes = { [2917449574] = { "Removes 80% of your maximum Energy Shield on use" }, } }, - ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 634 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2301696196] = { "You take 50% of your maximum Life as Chaos Damage on use" }, } }, - ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 646 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [3230795453] = { "Gain (1-3) Frenzy Charge on use" }, } }, - ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 647 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHashes = { [2697049014] = { "Gain (1-3) Power Charge on use" }, } }, - ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, - ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, - ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2374 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, - ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(250-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(70-100)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2372 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2422197812] = { "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage" }, } }, - ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2373 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1357244124] = { "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage" }, } }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2613 }, 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 = { 2411 }, 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 = { 2362 }, 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 = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 991 }, 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 = { 991 }, 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 = { 991 }, 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 = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2394 }, 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 = { 1429 }, 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 = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 4 Life per Enemy Hit with Spells" }, } }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1429 }, 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 = { 2382 }, 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 = { 2380 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2385 }, 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 = { 2385 }, 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 = "", "+2 to Melee Strike Range per White Socket", statOrder = { 2389 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2076080860] = { "+2 to Melee Strike Range per White Socket" }, } }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2404 }, 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 = { 2485 }, 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 maximum Energy Shield when you Block", statOrder = { 2396 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHashes = { [4059516437] = { "Lose 10% of your maximum Energy Shield when you Block" }, } }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (40-60)% of Physical Damage as extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (30-40)% of Physical Damage as extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1613 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2105236138] = { "Gain (6-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1612 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [1036710490] = { "Gain (6-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1610 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [502598927] = { "Gain (6-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical damage from Hits taken as Lightning damage" }, } }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2423 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, - ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1597 }, 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 = { 1597 }, 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 = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "15% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 319 }, 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 = { 319 }, 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 = { 319 }, 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 = { 1592 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, - ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1592 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "10% reduced Trap Duration" }, } }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, - ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(15-25)% increased Trap Damage" }, } }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2484 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2474 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3028 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1892 }, 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 = { 1887 }, 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 = { 2491 }, 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 = { 2490 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2493 }, 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 = { 5539 }, 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 = { 5539 }, 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 = { 5539 }, 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 = { 135 }, 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 = { 135 }, 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 = { 135 }, 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 = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1836 }, 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 = { 1836 }, 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 = { 2902 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Accuracy Rating" }, } }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 387 }, 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 = { 139 }, 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 = { 142 }, 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 = { 139 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, - ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4309 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4308 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2560 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 140 }, 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 = { 140 }, 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 = { 140 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", statOrder = { 2572 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies" }, } }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1129 }, 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 = { 1127 }, 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 = { 1125 }, 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 = { 2366 }, 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 = { 2365 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 343 }, 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 = { 343 }, 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 = { 344 }, 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 = { 2126 }, 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 = { 2397 }, 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 = { 2566 }, 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 = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2568 }, 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 = { 2569 }, 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 = { 2570 }, 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 = { 1345 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 635 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of maximum Life on use" }, } }, - ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 636 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2574 }, 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 = { 449 }, 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 = { 2575 }, 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 Hit Chance per 8 Strength", statOrder = { 2576 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Hit Chance per 8 Strength" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2577 }, 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 = { 2577 }, 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 = { 2578 }, 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 = { 2578 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2583 }, 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 = { 2583 }, 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 Hit", statOrder = { 7333 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2428 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Hits Poison the Enemy" }, } }, - ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(8-12)% Chance to Block Attack Damage during Effect" }, } }, - ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2581 }, 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 against Ignited Enemies", statOrder = { 6742 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2603 }, 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 = { 2594 }, 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 = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-20)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 858 }, 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 = { 858 }, 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 = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-100)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, 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 = { 858 }, 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 = { 858 }, 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 = { 858 }, 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 = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 100% faster" }, } }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1819 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHashes = { [2460686383] = { "Leech 30% faster" }, } }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 50% faster" }, } }, - ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (10-20)% slower" }, } }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1821 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (500-1000)% faster" }, } }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1823 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3554867738] = { "Leech Mana (500-1000)% faster" }, } }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1244 }, 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 = { 1244 }, 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 = { 1244 }, 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 maximum Life on Rampage", statOrder = { 2588 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of maximum Life on Rampage" }, } }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2589 }, 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 = { 2590 }, 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 = { 6316 }, 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 = { 2601 }, 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 = { 2602 }, 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 = { 2592 }, 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 = { 2595 }, 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 Hit Chance per Level", statOrder = { 2596 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Hit Chance per Level" }, } }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2597 }, 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 = { 2598 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2599 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2604 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10017, 10017.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2606 }, 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 = { 2607 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [294153754] = { "Gain 1 Energy Shield on Kill per Level" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2609 }, 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 = { 2610 }, 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 = { 2605 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 431 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 433 }, 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 = { 9756 }, 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 = { 1411 }, 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 = { 1418 }, 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 = { 1415 }, 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 = { 2615 }, 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 = { 2615 }, 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 = { 2613 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 384 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2248 }, 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 = { 2413 }, 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" }, } }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1892 }, 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 = { 2118 }, 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 = { 2117 }, 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 = { 1149 }, 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 = { 535, 535.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 1% increased Damage per 5 Dexterity", statOrder = { 1649 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 1% increased Damage per 5 Dexterity" }, } }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on killing a Shocked enemy", statOrder = { 534 }, 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 = { 2640 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2639 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2618 }, 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 = { 2618 }, 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 = { 1803 }, 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 = { 1803 }, 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 that are on Full Life", statOrder = { 2622 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life" }, } }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2623 }, 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 = { 2621 }, 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 = { 2651 }, 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 = { 1544 }, 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 = { 1544 }, 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 = { 1544 }, 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 = { 2646 }, 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 = { 1541 }, 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 = { 1539, 1541 }, 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 = "", "25% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2612 }, 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 = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 5945 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, - ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1629 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, - ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 3999 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, - ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (6-8)% increased Area of Effect" }, } }, - ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2652 }, 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 = { 2648 }, 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 = { 2445 }, 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 = { 2446 }, 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 = { 4446 }, 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 12 Steel Shards", statOrder = { 9321, 9321.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2238 }, 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 = { 436 }, 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 = { 437 }, 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 = { 434 }, 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 = { 434 }, 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 = { 435 }, 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 = { 438 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 349 }, 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 = { 350 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "3% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, 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 = { 1874 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1802 }, 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 = { 2656 }, 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 = { 2653 }, 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 = { 822 }, 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 = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-80)% increased Physical Damage" }, } }, - ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 2% of Physical Damage as Life" }, } }, - ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2655 }, 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 maximum Life per second", statOrder = { 1617 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 9940 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1598 }, 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 = { 1598 }, 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 = { 8399 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1092 }, 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 = { 352 }, 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 = { 5310 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, 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 = { 2111 }, 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 = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, 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 = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [347328113] = { "+(90-120) Energy Shield gained on killing a Shocked enemy" }, } }, - ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 2636 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2637 }, 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 maximum Life Regenerated per second", statOrder = { 2625 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of maximum Life Regenerated per second" }, } }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2630 }, 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 = { 2360 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2643 }, 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 = { 2645 }, 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 = { 1808 }, 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 = { 1808 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased effect of Buffs on you" }, } }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 356 }, 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 = { 2635 }, 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 = { 2635 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, - ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 654 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1457911472] = { "75% chance to cause Enemies to Flee on use" }, } }, - ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 789 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3636096208] = { "(7-10)% more Melee Physical Damage during effect" }, } }, - ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 716 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, - ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, 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 = { 1431 }, 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 = { 1431 }, 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 = { 1431 }, 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 = { 974, 1434 }, 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 = { 974, 1434 }, 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 = { 974, 1434 }, 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" }, } }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 484 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, } }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2425 }, 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 = { 2426 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "10% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 8989 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 467 }, 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 = { 363 }, 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 = { 7023 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, - ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces" }, } }, - ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, - ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, - ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(14-16)% increased Damage with Bows" }, } }, - ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1178 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1069260037] = { "(14-16)% increased Damage with Claws" }, } }, - ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(14-16)% increased Damage with Daggers" }, } }, - ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2579 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [379328644] = { "(14-16)% increased Damage with Wands" }, } }, - ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(14-16)% increased Damage with Quarterstaves" }, } }, - ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 2935 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1010549321] = { "(12-14)% increased Damage with One Handed Weapons" }, } }, - ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 2936 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1836374041] = { "(12-14)% increased Damage with Two Handed Weapons" }, } }, - ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1154 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [444174528] = { "(12-14)% increased Attack Damage while Dual Wielding" }, } }, - ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1169 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [515842015] = { "(14-16)% increased Melee Physical Damage with Unarmed Attacks" }, } }, - ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, - ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, - ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "10% increased Projectile Damage" }, } }, - ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-12)% increased Spell Damage" }, } }, - ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1118 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 1, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(14-16)% increased Spell Damage while wielding a Staff" }, } }, - ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1121 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(14-16)% increased Spell Damage while Dual Wielding" }, } }, - ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1120 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(14-16)% increased Spell Damage while holding a Shield" }, } }, - ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(14-16)% increased Trap Damage" }, } }, - ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1091 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(14-16)% increased Mine Damage" }, } }, - ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1087 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-10)% increased Damage" }, } }, - ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(14-16)% increased Fire Damage" }, } }, - ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(14-16)% increased Cold Damage" }, } }, - ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(14-16)% increased Lightning Damage" }, } }, - ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(14-16)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(10-12)% increased Damage over Time" }, } }, - ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, - ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-13)% increased Chaos Damage" }, } }, - ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, - ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1259 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(6-8)% increased Attack Speed with Maces or Sceptres" }, } }, - ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(6-8)% increased Attack Speed with Axes" }, } }, - ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(6-8)% increased Attack Speed with Swords" }, } }, - ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(6-8)% increased Attack Speed with Bows" }, } }, - ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1257 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(6-8)% increased Attack Speed with Claws" }, } }, - ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(6-8)% increased Attack Speed with Daggers" }, } }, - ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1262 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(6-8)% increased Attack Speed with Wands" }, } }, - ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(6-8)% increased Attack Speed with Quarterstaves" }, } }, - ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1254 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1813451228] = { "(4-6)% increased Attack Speed with One Handed Melee Weapons" }, } }, - ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1253 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917910910] = { "(4-6)% increased Attack Speed with Two Handed Melee Weapons" }, } }, - ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1250 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [4249220643] = { "(4-6)% increased Attack Speed while Dual Wielding" }, } }, - ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1281 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "(3-5)% increased Cast Speed while Dual Wielding" }, } }, - ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1252 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3805075944] = { "(4-6)% increased Attack Speed while holding a Shield" }, } }, - ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1282 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "(3-5)% increased Cast Speed while holding a Shield" }, } }, - ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1283 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "(3-5)% increased Cast Speed while wielding a Staff" }, } }, - ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1265 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1584440377] = { "(6-8)% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, - ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(6-8)% increased Projectile Speed" }, } }, - ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-8)% increased Trap Throwing Speed" }, } }, - ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(6-8)% increased Mine Throwing Speed" }, } }, - ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(2-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1706 }, 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 = { 1706 }, 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 = { 1706 }, 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 = { 1706 }, 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 = { 1706 }, 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 = { 1706 }, 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 = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1076 }, 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 = { 1076 }, 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 = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, - ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1101 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(12-14)% increased Attack Damage while holding a Shield" }, } }, - ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1210 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHashes = { [1476643878] = { "(3-5)% increased Cast Speed with Fire Skills" }, } }, - ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1218 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHashes = { [928238845] = { "(3-5)% increased Cast Speed with Cold Skills" }, } }, - ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1223 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHashes = { [1788635023] = { "(3-5)% increased Cast Speed with Lightning Skills" }, } }, - ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1229 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHashes = { [2054902222] = { "(3-5)% increased Cast Speed with Chaos Skills" }, } }, - ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (5-10)% increased Cast Speed" }, } }, - ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 947 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, - ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 948 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, - ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 949 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, - ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, - ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, - ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, - ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-12) to maximum Life" }, } }, - ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 870 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-12) to maximum Mana" }, } }, - ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(12-15)% increased Mana Regeneration Rate" }, } }, - ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(8-12) to maximum Energy Shield" }, } }, - ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, - ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 869, 871 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(4-6) to maximum Mana" }, [3299347043] = { "+(4-6) to maximum Life" }, } }, - ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 870, 872 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 868, 872 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 868, 870 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (0.2-0.4)% of Physical Attack Damage as Life" }, } }, - ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (0.2-0.4)% of Physical Attack Damage as Mana" }, } }, - ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, - ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1436 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences", "attack" }, tradeHashes = { [211381198] = { "Gain (2-3) Energy Shield per Enemy Hit with Attacks" }, } }, - ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, - ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, - ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, - ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 864, 866 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 864, 868 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 866, 868 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, - ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3917489142] = { "(4-6)% increased Rarity of Items found" }, } }, - ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(20-40) to Accuracy Rating" }, } }, - ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-14)% increased Accuracy Rating" }, } }, - ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 933, 1268 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "critical" }, tradeHashes = { [587431675] = { "(6-10)% increased Critical Hit Chance" }, [624954515] = { "(6-10)% increased Accuracy Rating" }, } }, - ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(9-12)% increased Critical Damage Bonus" }, } }, - ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1301 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [107161577] = { "(12-16)% increased Critical Hit Chance with Maces or Sceptres" }, } }, - ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1304 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2560468845] = { "(12-16)% increased Critical Hit Chance with Axes" }, } }, - ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1300 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2630620421] = { "(12-16)% increased Critical Hit Chance with Swords" }, } }, - ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1297 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(12-16)% increased Critical Hit Chance with Bows" }, } }, - ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1298 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3428039188] = { "(12-16)% increased Critical Hit Chance with Claws" }, } }, - ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(12-16)% increased Critical Hit Chance with Daggers" }, } }, - ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1303 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1729982003] = { "(12-16)% increased Critical Hit Chance with Wands" }, } }, - ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1302 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3621953418] = { "(12-16)% increased Critical Hit Chance with Quarterstaves" }, } }, - ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1321 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(8-10)% to Critical Damage Bonus with Maces or Sceptres" }, } }, - ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1322 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(8-10)% to Critical Damage Bonus with Axes" }, } }, - ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1324 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(8-10)% to Critical Damage Bonus with Swords" }, } }, - ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1323 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "(8-10)% increased Critical Damage Bonus with Bows" }, } }, - ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1326 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(8-10)% to Critical Damage Bonus with Claws" }, } }, - ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1320 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "(8-10)% increased Critical Damage Bonus with Daggers" }, } }, - ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1325 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(8-10)% to Critical Damage Bonus with Wands" }, } }, - ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1327 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1661096452] = { "(8-10)% increased Critical Damage Bonus with Quarterstaves" }, } }, - ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1310 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2381842786] = { "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons" }, } }, - ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1308 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [764295120] = { "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1312 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3702513529] = { "(14-18)% increased Attack Critical Hit Chance while Dual Wielding" }, } }, - ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1306 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1215447494] = { "(10-14)% increased Critical Hit Chance while holding a Shield" }, } }, - ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1311 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1199429645] = { "(10-14)% increased Melee Critical Hit Chance" }, } }, - ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-14)% increased Critical Hit Chance for Spells" }, } }, - ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(12-16)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(100-120)% increased Critical Hit Chance with Traps" }, } }, - ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1307 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [214031493] = { "(12-16)% increased Critical Hit Chance with Mines" }, } }, - ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1313 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "critical" }, tradeHashes = { [1104796138] = { "(14-18)% increased Critical Hit Chance with Fire Skills" }, } }, - ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1315 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "critical" }, tradeHashes = { [3337344042] = { "(14-18)% increased Critical Hit Chance with Cold Skills" }, } }, - ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1314 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1186596295] = { "(14-18)% increased Critical Hit Chance with Lightning Skills" }, } }, - ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1316 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "critical" }, tradeHashes = { [439950087] = { "(10-14)% increased Critical Hit Chance with Elemental Skills" }, } }, - ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1317 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [1424360933] = { "(12-16)% increased Critical Hit Chance with Chaos Skills" }, } }, - ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1329 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons" }, } }, - ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1309 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [252507949] = { "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3811 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2546185479] = { "+(15-18)% to Critical Damage Bonus while Dual Wielding" }, } }, - ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1332 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3668589927] = { "+(6-8)% to Melee Critical Damage Bonus while holding a Shield" }, } }, - ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(12-15)% to Melee Critical Damage Bonus" }, } }, - ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(12-15)% increased Critical Spell Damage Bonus" }, } }, - ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1780168381] = { "+(8-10)% to Critical Damage Bonus with Traps" }, } }, - ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1333 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2529112796] = { "+(8-10)% to Critical Damage Bonus with Mines" }, } }, - ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1334 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHashes = { [2307547323] = { "+(15-18)% to Critical Damage Bonus with Fire Skills" }, } }, - ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1336 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHashes = { [915908446] = { "+(15-18)% to Critical Damage Bonus with Cold Skills" }, } }, - ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1335 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [2441475928] = { "+(15-18)% to Critical Damage Bonus with Lightning Skills" }, } }, - ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1337 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [1569407745] = { "+(12-15)% to Critical Damage Bonus with Elemental Skills" }, } }, - ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1338 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [2710238363] = { "+(8-10)% to Critical Damage Bonus with Chaos Skills" }, } }, - ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, - ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, - ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, - ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2454 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, - ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2455 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, - ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2456 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, - ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 986 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2517001139] = { "(10-14)% increased Stun Duration on Enemies" }, } }, - ["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2511217560] = { "(25-35)% increased Stun Recovery" }, } }, - ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, - ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, - ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, - ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Curses" }, } }, - ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, - ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(6-8)% chance to Avoid being Shocked" }, } }, - ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, - ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, - ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, - ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(2-3)% chance to Freeze" }, } }, - ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, - ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, - ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(10-14)% increased Power Charge Duration" }, } }, - ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [977908611] = { "(4-6)% chance to Knock Enemies Back on hit" }, } }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, - ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+1% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1056 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+1% Chance to Block Attack Damage while holding a Shield" }, } }, - ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1059 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+1% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5264 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, - ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, } }, - ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, - ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9259 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, - ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced effect of Curses on you" }, } }, - ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, - ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, - ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, - ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, - ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, - ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, - ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 989, 1541 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, - ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 991, 1540 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, - ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, - ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2786, 2789 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2159, 4522 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, - ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4455 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1554 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, - ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, - ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2552 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(2-4)% Chance to Block Attack Damage" }, } }, - ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, - ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, - ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, - ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, - ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, - ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2442 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, - ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, - ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, - ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 1% of Physical Damage as Life" }, } }, - ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 653 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3591397930] = { "Knocks Back Enemies in an Area when you use a Flask" }, } }, - ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1569 }, 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 = { 2241 }, 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 = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10078 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, - ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, - ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, - ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1534 }, 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 = { 1534 }, 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 = { 1526 }, 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 = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2153 }, 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 = { 2153 }, 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 = { 2153 }, 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 = { 2153 }, 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 = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2680 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, - ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2677 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, - ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2698 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(3-4) to Melee Strike Range while Unarmed" }, } }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2687 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, - ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2691 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, - ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2692 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [727625899] = { "Passives in Radius apply to Minions instead of you" }, } }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2395 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "2% increased Spell Damage per 10 Intelligence" }, } }, - ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "50% increased Critical Damage Bonus" }, } }, - ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2678 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of maximum Life when you Consume a corpse" }, } }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2679 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, - ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2684 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, - ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1150 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [761505024] = { "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you" }, } }, - ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1151 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3434279150] = { "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you" }, } }, - ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 2% of their maximum Life when they Block" }, } }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their maximum Life when they Block" }, } }, - ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-30)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 2685 }, 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 = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2460 }, 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 = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 1938 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have 10% chance to Fortify" }, } }, - ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2699 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [886366428] = { "(20-25)% increased Damage for each Magic Item Equipped" }, } }, - ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2701 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [736847554] = { "Totems fire 2 additional Projectiles" }, } }, - ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2702 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3779823630] = { "(40-60)% increased Spell Damage while no Mana is Reserved" }, } }, - ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2705 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1212897608] = { "4% increased Attributes per allocated Keystone" }, } }, - ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2694 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1609999275] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks" }, } }, - ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2695 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [622657842] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells" }, } }, - ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2202 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1391 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7204 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7206 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, - ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2722 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2723 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "(15-20)% increased Vaal Skill Effect Duration" }, } }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 9823 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, - ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2725 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Hit Chance" }, } }, - ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2726 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Damage Bonus" }, } }, - ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, - ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2398 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 8% increased Effect" }, } }, - ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "4% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Curse Magnitudes" }, } }, - ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2728 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2701327257] = { "60% reduced Cost of Aura Skills that summon Totems" }, } }, - ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2727 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1633381214] = { "50% chance to gain an additional Vaal Soul per Enemy Shattered" }, } }, - ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2729 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [47271484] = { "10% increased Experience Gain for Corrupted Gems" }, } }, - ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2730 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1677654268] = { "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use" }, } }, - ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1442 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [751813227] = { "Lose 1% of maximum Life on Kill" }, } }, - ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1444 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1699499433] = { "Lose 1% of maximum Energy Shield on Kill" }, } }, - ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2738 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1556263668] = { "(20-30)% chance to Curse you with Punishment on Kill" }, } }, - ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1834 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3112863846] = { "An additional Curse can be applied to you" }, } }, - ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, - ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "10% increased Damage taken while on Full Energy Shield" }, } }, - ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, 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 = { 1639 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, - ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2564 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, - ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2740, 2741, 2756 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHashes = { [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, - ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2743, 2744 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, } }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2742 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, - ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2745 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, - ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2746 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, - ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2751 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, - ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 846, 2750 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [1754445556] = { "Adds 1 to 2 Lightning damage to Attacks" }, } }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2754 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, } }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2755 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, - ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2638 }, 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 = { 2250 }, 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 = { 2250 }, 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 = { 2250 }, 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 = { 2161 }, 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 = { 2161 }, 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 = { 2161 }, 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 = { 2186 }, 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 = { 2199 }, 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 = { 513 }, 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 = { 1534 }, 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 = { 1534 }, 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 = { 341 }, 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 = { 2162 }, 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 = { 2162 }, 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 = { 1241 }, 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 = { 1241 }, 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 = { 1241 }, 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 = { 1241 }, 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 = { 1241 }, 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 = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1241 }, 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" }, } }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1242 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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 = { 1243 }, 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" }, } }, - ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1227 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-33) to (45-60) Chaos damage" }, } }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1227 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (38-48) to (70-90) Chaos damage" }, } }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1227 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-55) to (80-98) Chaos damage" }, } }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1266 }, 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 = { 1266 }, 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 = { 1267 }, 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 = { 1267 }, 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 = { 1441 }, 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 = { 1441 }, 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 = { 1897 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1898 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2547 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 2943 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2154 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1454946771] = { "Hits that Stun inflict Bleeding" }, } }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 2977 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5159 }, 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 maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of maximum Mana on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of maximum Energy Shield on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2406605753] = { "Recover 1% of maximum Energy Shield on Kill" }, } }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, } }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2870 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks" }, } }, - ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2864, 2864.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, } }, - ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2863, 2863.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, - ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2853 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, - ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 2987 }, 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 = { 4412 }, 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 = { 2988 }, 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 = { 2995 }, 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 = { 364 }, 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 = { 365 }, 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 = { 365 }, 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 = { 366 }, 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 = { 367 }, 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 = { 368 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 369 }, 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 = { 369 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 642 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [570159344] = { "Consumes Frenzy Charges on use" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Hit Chance against Blinded Enemies" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Hit Chance against Blinded Enemies" }, } }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3663 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits against Hindered Enemies" }, } }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3018 }, 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 = { 3019 }, 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 = { 543 }, 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 = { 379, 379.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 = { 448 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 49 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are doubled" }, } }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 49 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are tripled" }, } }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3146 }, 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 = { 3150 }, 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 Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3148 }, 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 = { 566 }, 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 = { 566 }, 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 = { 566 }, 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 Hit with this Weapon", statOrder = { 527 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon" }, } }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1261 }, 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 = { 1171 }, 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 = { 1155 }, 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 = { 3159 }, 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 = { 3151 }, 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 Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3152 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills" }, } }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3155 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, 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 = { 3157 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, 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 = { 3162 }, 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" }, } }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3163 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, 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 = { 1216 }, 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 = { 1216 }, 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" }, } }, - ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 655 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [538730182] = { "Creates a Smoke Cloud on Use" }, } }, - ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 637 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2146730404] = { "Creates Consecrated Ground on Use" }, } }, - ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 638 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311869501] = { "Creates Chilled Ground on Use" }, } }, - ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 652 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2005503156] = { "Taunts nearby Enemies on use" }, } }, - ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 674 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2451856207] = { "Restores Ward on use" }, } }, - ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 675, 675.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2434293916] = { "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit" }, } }, - ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, 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 = { 3178 }, 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 = { 3178 }, 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 = { 2408 }, 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 = { 3179 }, 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 = { 558 }, 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 = { 2613 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, - ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 745 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1935500672] = { "Petrified during Effect" }, } }, - ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 728 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHashes = { [677302513] = { "(40-50)% additional Physical Damage Reduction during Effect" }, } }, - ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2781 }, 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 = { 3319 }, 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 = { 3320 }, 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 = { 542 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3313 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of maximum Life per second while Frozen" }, } }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3197 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "100% chance to knockback on Counterattack" }, } }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3014 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHashes = { [762154651] = { "20% chance for Energy Shield Recharge to start when you Block" }, } }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3329 }, 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 = { 3330 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, - ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 620, 803 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "resource", "life", "defences" }, tradeHashes = { [851224302] = { "Zealot's Oath during Effect" }, [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, } }, - ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3334 }, 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 Hit Chance against Enemies that are on Full Life", statOrder = { 3335 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Hit Chance against Enemies that are on Full Life" }, } }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3336 }, 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 Damage as Extra Lightning Damage with Attacks", statOrder = { 3344 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [2329121140] = { "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain 15% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3345 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3788706881] = { "+2 maximum Energy Shield per 5 Strength" }, } }, - ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, 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 = { 3262 }, 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 = { 3262 }, 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 = { 450 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3347 }, 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 = { 351 }, 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 = { 2967 }, 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 = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [988575597] = { "(50-100)% increased Energy Shield Recovery rate" }, } }, - ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 741 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4267616253] = { "Immunity to Damage during Effect" }, } }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3363 }, 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 = { 3364 }, 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 = { 3365 }, 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 = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, - ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1595 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [497716276] = { "(40-60)% increased Trap Trigger Area of Effect" }, } }, - ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 2999 }, 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 = { 3682 }, 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 = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, - ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3362 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087710344] = { "(8-12)% Chance for Traps to Trigger an additional time" }, } }, - ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3361 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3391324703] = { "Traps and Mines deal (3-5) to (10-15) additional Physical Damage" }, } }, - ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 722 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3686711832] = { "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost" }, } }, - ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3646 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3192135716] = { "Traps and Mines have a 25% chance to Poison on Hit" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 370 }, 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 = { 370 }, 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 = { 441 }, 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 = { 441 }, 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 = { 2978 }, 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 = { 2979 }, 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 = { 560 }, 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 = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3683 }, 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 = { 3687 }, 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 = { 7320 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3690 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critical Hit Shocked Enemies" }, } }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3691 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Hits against non-Shocked Enemies" }, } }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3709 }, 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 = { 3708 }, 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 = { 374 }, 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 = { 3710 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3711 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, } }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3712 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3715 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, } }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3714 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2948375275] = { "25% increased Critical Hit Chance per Grand Spectrum" }, } }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [242161915] = { "+7% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per socketed Grand Spectrum" }, } }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3713 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3721 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [482240997] = { "Minions have +10% to Critical Damage Bonus per Grand Spectrum" }, } }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3718 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3719 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3720 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, 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 = { 1507 }, 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 = { 9101 }, 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 = { 1506 }, 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 = { 5596 }, 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 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4409 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 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 = { 4409 }, 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 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 8608 }, 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 = { 3882 }, 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 = { 3880 }, 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 = { 8421 }, 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 = { 5318 }, 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 = { 9099 }, 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 = { 9099 }, 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 = { 9131 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5201 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6363 }, 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 = { 5301 }, 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 = { 5301 }, 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 = { 4778 }, 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 = { 1448 }, 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 Reckoning Skill", statOrder = { 477 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Reckoning Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8554 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3180 }, 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 = { 476 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 476 }, 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 = { 3995 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, 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 = { 2790 }, 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 = { 2790 }, 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 = { 545 }, 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 = { 585 }, 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 = { 4451 }, 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", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6072 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5445 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4207 }, 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 = { 857 }, 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 = { 8334 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1228337241] = { "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 = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1228337241] = { "Gain (5-10)% of maximum Life as Extra maximum Energy Shield" }, } }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2757 }, 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%" }, } }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7168 }, 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 = { 2193 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7398, 7398.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7399, 7399.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7376, 7376.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7412, 7412.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, - ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, - ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, - ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3580 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4232 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3063, 3063.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" }, } }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3287 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 2982 }, 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 = { 3723 }, 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 maximum Mana when you Shock an Enemy", statOrder = { 3725 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of maximum 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 = { 536, 536.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [723388324] = { "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3738 }, 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 Hit Chance when in Main Hand", statOrder = { 3737 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Hit Chance when in Main Hand" }, } }, - ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2383 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Damage Bonus per Green Socket" }, } }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2379 }, 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" }, } }, - ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 769 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1085359447] = { "(50-100)% increased Charges gained by Other Flasks during Effect" }, } }, - ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 801 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741956733] = { "Gains no Charges during Effect of any Overflowing Chalice Flask" }, } }, - ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3686 }, 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 = { 3730 }, 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 = { 3733 }, 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 = { 3729 }, 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 = { 3740 }, 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 = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've used a Warcry Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've used a Warcry Recently" }, } }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3732 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of maximum 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 = { 3728 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, - ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3746 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4095359151] = { "20% increased Damage with Hits for each Level higher the Enemy is than you" }, } }, - ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3736 }, 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 = { 4473 }, 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 = { 1364 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3726 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3727 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 1508 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on killing a Frozen enemy", statOrder = { 1505 }, 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 = { 2173 }, 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 = { 2174 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3745 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, 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 = { 382 }, 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 = { 3731 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3735 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3204585690] = { "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem" }, } }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3747 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem" }, } }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1381 }, 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 = { 3748 }, 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 = { 3751 }, 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 Counterattacks", statOrder = { 3759 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Counterattacks" }, } }, - ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3753 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2114157293] = { "(16-20)% increased Golem Damage for each Type of Golem you have Summoned" }, } }, - ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3755 }, 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 = { 3756 }, 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 = { 3757 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, 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 = { 7505 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, 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 = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1144 }, 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 = { 1144 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1206 }, 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 = { 1206 }, 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 = { 1206 }, 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 = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1212 }, 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 = { 1212 }, 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 = { 1212 }, 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 = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1220 }, 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 = { 1220 }, 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 = { 1220 }, 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 = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, - ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1483 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [115109959] = { "Regenerate 2% of maximum Energy Shield per second while on Low Life" }, } }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1854 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2006370586] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3761 }, 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 = { 3762 }, 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 = { 2584 }, 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 = { 2584 }, 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 = { 2388 }, 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 = { 3764 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3763 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3796 }, 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 = { 3742 }, 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 = { 8500 }, 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 their Physical Damage as Extra Cold Damage", statOrder = { 3744 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, - ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 732 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3792 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3794 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, 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 = { 3793 }, 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 = { 3793 }, 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 = { 3175 }, 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 = { 3769 }, 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 = { 3769 }, 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 = { 1549 }, 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 = { 3807 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3808 }, 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 = { 3808 }, 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 = { 275 }, 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 = { 375 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2522 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1888494262] = { "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of maximum Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4246 }, 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 = { 3143 }, 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 = { 3143 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 2914 }, 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 = { 1573 }, 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 = { 2786 }, 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 = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, - ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 778 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [803730540] = { "Immunity to Freeze, Chill, Curses and Stuns during Effect" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, 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 = { 1621 }, 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 = { 3187 }, 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 Hits", statOrder = { 3823 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Hits" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Hit" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Hit" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3822 }, 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 Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3833 }, 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 = { 3834 }, 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 = { 3866 }, 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 maximum Life when you Ignite an Enemy", statOrder = { 3867 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of maximum Life when you Ignite an Enemy" }, } }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3868 }, 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 = { 8734 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 7462 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 5027, 7810 }, 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 = { 7806, 7807 }, 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 = { 5767, 7811 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7808, 7809 }, 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" }, } }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3869 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3872 }, 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 = { 3871 }, 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 = { 3875 }, 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 = { 3873 }, 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 = { 8484 }, 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 = { 4114 }, level = 1, group = "MinionDamageAlsoAffectsYou", 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 Hit Chance against Chilled Enemies", statOrder = { 6461 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 601 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4363 }, 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 = { 4363 }, 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 = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2532 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Physical Damage from Hits also Contributes to Shock Chance" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, 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 = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, 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 = { 6153 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7432 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8581 }, 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 = { 6397 }, 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 = { 3055 }, 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 = { 1664 }, 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 = { 1691 }, 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 = { 6010 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, - ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1690 }, 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 = { 8374 }, 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 = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1689 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+4 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6060 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, 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 = { 5155 }, 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 = { 8997 }, 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 = { 8998 }, 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 = { 4481 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, - ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 752 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [323705912] = { "Skills fire 2 additional Projectiles during Effect" }, } }, - ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 730 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10100 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2555 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 8758 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, - ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6482 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, - ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6481 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, - ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3270 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3384291300] = { "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds" }, } }, - ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, - ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, - ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 2930 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729180395] = { "Golem Skills have (20-30)% increased Cooldown Recovery Rate" }, } }, - ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 2931 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3246099900] = { "Summoned Golems have (30-45)% increased Cooldown Recovery Rate" }, } }, - ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6479 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6477 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6485 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 3996 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 9409 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9400 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5501 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3881 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5275 }, 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 Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 5931 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2803 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Damage Bonus 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 = { 4391 }, 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 = { 5140 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6395 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7281 }, 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 = { 559 }, 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 = { 4926 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 9430 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10103 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6143 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10010 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2789 }, 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 = { 9419 }, 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 = { 4089 }, 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 = { 6391 }, 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 = { 8546 }, 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 = { 8765 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4522 }, 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 = { 6930 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 6830 }, 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 = { 8329 }, 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 = { 7032 }, 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 = { 9982 }, 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 = { 8331 }, 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 = { 5606 }, 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 = { 6929 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 8602 }, 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 = { 9882 }, 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 = { 3056 }, 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 = { 2808 }, 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 = { 2809 }, 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 = { 9475 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, - ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 799 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, - ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 798 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, - ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 376 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6754 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 855 }, 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 = { 6842 }, 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 = { 6161 }, 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 = { 490 }, 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 = { 485 }, 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 = { 485 }, 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" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4175 }, 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 = { 4065 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7005 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7502 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6009 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 483 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 6699 }, 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 = { 4483 }, 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 = { 5597 }, 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 = { 9262, 9262.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 = { 9759 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 9759 }, 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 = { 8459 }, 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 = { 8513 }, 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 = { 8551 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 133 }, 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 = { 133 }, 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 = { 1716 }, 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 Damage Bonus while you have no Frenzy Charges", statOrder = { 1715 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Damage Bonus while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4032 }, 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 = { 8578 }, 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 = { 5297 }, 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 = { 6142 }, 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 = { 5613 }, 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 = { 6380, 6380.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 = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2517 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Fire Damage from Hits also Contributes to Poison Magnitude" }, } }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2516 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Cold Damage from Hits also Contributes to Poison Magnitude" }, } }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2518 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Lightning Damage from Hits also Contributes to Poison Magntiude" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6166 }, 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 = { 5327 }, 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 = { 7099 }, 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 = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3027830452] = { "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 481 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 454 }, 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 = { 454 }, 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 = { 454 }, 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 = { 5209 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10077 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, 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 = { 8530 }, 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 = { 599 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 530 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, - ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3559 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, - ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9565 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6022 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, - ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, 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 Hits while you have no Power Charges", statOrder = { 6117 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits 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 = { 3054 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3655758456] = { "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 = { 474 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 478 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 22 Blight Skill" }, } }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 457 }, 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 = { 5198 }, 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 = { 2787 }, 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 Hit Chance", statOrder = { 3884 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Hit Chance" }, } }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 373 }, 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 = { 372 }, 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 = { 371 }, 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 = { 371 }, 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 = { 365 }, 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 = { 529 }, 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 = { 8408, 8408.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 = { 8921 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6367 }, 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 = { 6406 }, 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 = { 8922 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, 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 = { 7320 }, 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 = { 4733 }, 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 = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 5703 }, 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 = { 5703 }, 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 = { 5703 }, 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 = { 1370, 1376 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, 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 = { 531 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3885, 3885.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3887, 3887.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3886, 3886.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion" }, } }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3888 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion" }, } }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3889 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3890 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 528 }, 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 Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7069 }, 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 = { 7069 }, 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 = { 7069 }, 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 = { 68 }, 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 = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["UniqueLocalNoAttributeRequirements1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["UniqueLocalNoAttributeRequirements2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, 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 = { 117 }, 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 = { 118 }, 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 = { 119 }, 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 = { 9641 }, 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 = { 6136 }, 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 = { 447 }, 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 = { 453 }, 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 = { 455 }, 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 = { 522 }, 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 = { 523 }, 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 = { 524 }, 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 = { 9379 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1455 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7199 }, 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 = { 1285 }, 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 = { 7518 }, 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 = { 6413 }, 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 = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7445 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7421, 7422 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, - ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 795, 796 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 549 }, 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 = { 547 }, 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 = { 550 }, 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 = { 548 }, 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 = { 552 }, 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 = { 370 }, 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 = { 491, 491.1, 491.2, 491.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 = { 492, 492.1, 492.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" }, } }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 8930 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you" }, } }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4673 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, - ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5210 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5612 }, 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 = { 8605 }, 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 = { 9704, 9704.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" }, } }, - ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4305 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 4905 }, 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 = { 4900 }, 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 = { 4918 }, 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 = { 5607 }, 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 = { 1543 }, 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 = { 1543 }, 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 = { 1543 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 589 }, 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 = { 6211 }, 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 = { 6264 }, 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 = { 5350 }, 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 = { 9872 }, 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 = { 5735 }, 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 = { 9638 }, 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 = { 9638 }, 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 = { 9001 }, 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 = { 6038 }, 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 = { 5903 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5305 }, 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 = { 10089 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, 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 = { 10094 }, 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 = { 10098 }, 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 = { 10097 }, 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 = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2524 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "All Elemental Damage from Hits Contributes to Shock Chance" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 565 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7158 }, 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 = { 7240 }, 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, no more than once every second", statOrder = { 7238 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7159 }, 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 = { 7167 }, 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 = { 7156 }, 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" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 5695 }, 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 = { 196 }, 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 1 Elemental Penetration", statOrder = { 196 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 1 Elemental Penetration" }, } }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 3941 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 3943 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of maximum Life when you lose a Spirit Charge" }, } }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 3944 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of maximum 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 = { 8725 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "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 = { 590 }, 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 = { 3940 }, 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 = { 3942 }, 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 = { 3938 }, 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 = { 3938 }, 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 = { 9990 }, 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 = { 570 }, 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 = { 571 }, 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 = { 8426 }, 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 = { 5208 }, 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 = { 5873 }, 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 = { 8877 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, 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 = { 2970 }, 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 = { 1484 }, 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 = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8423 }, 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 Hit Chance per Power Charge", statOrder = { 4071 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "(6-10)% increased Critical Damage Bonus per Power Charge" }, } }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9056 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, - ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 593 }, 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 = { 3913, 6491 }, 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 other Ring is an Elder Item", statOrder = { 3894 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your other Ring is an Elder Item" }, } }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3891 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your other Ring is a Shaper Item" }, } }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3892 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your other Ring is an Elder Item" }, } }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3893 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your other Ring is a Shaper Item" }, } }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 3900 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of maximum Life when you use a Mana Flask" }, } }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 3901 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Recovery from Mana Flasks also applies to Life" }, } }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1240 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (6-8) to (10-12) Physical Damage to Spells" }, } }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 597 }, 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 = { 596 }, 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 = { 598 }, 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 = { 488 }, 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 = { 500 }, 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 = { 496 }, 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 = { 519 }, 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 = { 512 }, 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 = { 501 }, 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 = { 1388 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5602 }, 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 = { 5602 }, 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 = { 7031 }, 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 = { 5854 }, 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 = { 5129 }, 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 = { 8130 }, 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 = { 9052 }, 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 = { 3934 }, 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 = { 3933 }, 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 = { 2148 }, 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 = { 5265 }, 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 = { 5265 }, 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 = { 9245 }, 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 = { 9245 }, 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 = { 322 }, 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 = { 320 }, 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 = { 8413 }, 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 = { 8424 }, 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 = { 4465 }, 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 = { 4330 }, 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 = { 4329 }, 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 = { 7033 }, 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 = { 7526 }, 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 = { 4464 }, 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 = { 572 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, - ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7391, 7394 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7390, 7393 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7392, 7395 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1789 }, 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 = { 1791 }, 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 = { 1806 }, 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 = { 2293 }, 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 = { 2295 }, 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 = { 2297 }, 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 = { 8603 }, 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 = { 1484 }, 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 = { 8606 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of maximum Life per second per Endurance Charge" }, } }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of maximum Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7053 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2812 }, 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 = { 2889 }, 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 = { 5613 }, 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 = { 8416 }, 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 = { 3819 }, 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 = { 8420 }, 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 = { 4054 }, 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 = { 4055 }, 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 = { 4056 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 8713 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "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 = { 8712 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 8715 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 8879 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, - ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6011 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, 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 = { 3789 }, 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 = { 6379 }, 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 = { 6380, 6380.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 = { 6350 }, 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 = { 1515 }, 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 Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Hit" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4343 }, 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 = { 1710 }, 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 = { 4344 }, 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 Hit Chance per Endurance Charge", statOrder = { 5459 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5460 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "3% increased Critical Damage Bonus per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5208 }, 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 = { 8870 }, 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 = { 8872 }, 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 = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", 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 = { 6919 }, 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 = { 6388 }, 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 = { 6322 }, 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 = { 3609 }, 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 Hit while at maximum Frenzy Charges", statOrder = { 6356 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 8745 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10083 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10084 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, 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 = { 1869 }, 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 = { 595 }, 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" }, } }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3898 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [1860646468] = { "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 = { 6771 }, 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 = { 6770 }, 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 = { 5296 }, 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 = { 7077 }, 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%" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 639 }, 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 = { 737 }, 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 Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 733 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 771 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1582 }, 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 = { 3945, 3946 }, 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 = { 3948, 3948.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 = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1842, 7210 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2808, 7203 }, 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 = { 7536 }, 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 = { 7537 }, 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 = { 2627 }, 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 = { 2626 }, 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 Damage Bonus per 100 Dexterity you have", statOrder = { 2628 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have" }, } }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2629 }, 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 = { 495 }, 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 = { 8942 }, 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 = { 8943 }, 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 = { 173 }, 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 = { 537 }, 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 = { 602, 602.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" }, } }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2823 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, 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 = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, 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 = { 9992 }, 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 = { 9992 }, 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 = { 9992 }, 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 = { 9992 }, 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 = { 6719 }, 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 = { 6720 }, 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 = { 7078 }, 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 = { 6718 }, 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 = { 8339 }, 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 = { 7080 }, 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 = { 6706 }, 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 = { 6707 }, 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 = { 6148 }, 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 = { 6705 }, 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 = { 8317 }, 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 = { 6149 }, 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 = { 6709 }, 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 = { 6710 }, 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 = { 5304 }, 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 = { 6708 }, 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 = { 8302 }, 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 = { 5306 }, 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 = { 6714 }, 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 = { 6715 }, 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 = { 8865 }, 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 = { 6712 }, 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 = { 9224 }, 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 = { 8873 }, 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 = { 6702 }, 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 = { 6703 }, 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 = { 5207 }, 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 = { 6701 }, 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 = { 4130 }, 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 = { 5212 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 11, 11.1, 11.2, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9675 }, 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 = { 9279 }, 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 = { 5199 }, 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 = { 4234 }, 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 = { 5860 }, 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 = { 5896 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 8662 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9215 }, 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 = { 9214 }, 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 = { 8455 }, 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 = { 8445 }, 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 = { 7517 }, 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 = { 7487 }, 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 = { 8656 }, 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 = { 9243 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7347 }, 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 = { 7345 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1584, 7182 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1584, 7133 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1584, 7154 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 1584, 7440 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1584, 7232 }, 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" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1584, 7150 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4415 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4416 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10011 }, 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 = { 82, 268 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 916, 1392 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7284 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4534 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, - ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of 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 = { 7312 }, 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 Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7270 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 427 }, 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 Empowering the Attack", statOrder = { 9217, 9217.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 9786 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2512 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, - ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4157 }, 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 = { 5278 }, 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 increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7208 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7424, 7424.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9795 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, - ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, - ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, - ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5182 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, - ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5369 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, - ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 972 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 821 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, - ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5837 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4010 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, - ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(20-30)% reduced Presence Area of Effect" }, } }, - ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% reduced Light Radius" }, } }, - ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1356 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(6-10)% increased Spirit" }, } }, - ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(30-40)% increased Armour" }, } }, - ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 9930 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 9929 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 9643 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, - ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (20-30)% reduced Critical Damage Bonus" }, } }, - ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-16)% increased Skill Effect Duration" }, } }, - ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, - ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, - ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(15-25)% increased Area of Effect of Curses" }, } }, - ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, - ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, } }, - ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4005 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies {0:-d}% to Fire Resistance" }, } }, - ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4006 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, - ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 9454 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 4964 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, - ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-10)% increased maximum Mana" }, } }, - ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, - ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, } }, - ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7514 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, - ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 9928 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9106 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6318 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9299 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, - ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-40)% increased Critical Hit Chance" }, } }, - ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, - ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, - ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (9-18)% increased Area of Effect", statOrder = { 9390 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1967040409] = { "Spell Skills have (9-18)% increased Area of Effect" }, } }, - ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, - ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, } }, - ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4003 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies {0:-d}% to Cold Resistance" }, } }, - ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4008 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4015 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 9453 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4419 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, - ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, } }, - ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, - ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7038 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, - ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 9927 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 9925 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9104 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6385 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, - ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 6987 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, - ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-25)% increased Critical Damage Bonus" }, } }, - ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(9-18)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(9-18)% increased Area of Effect for Attacks" }, } }, - ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, - ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4009 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies {0:-d}% to Lightning Resistance" }, } }, - ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4007 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4133 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 9452 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 54 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7275 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7274 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, - ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7273 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, - ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7276 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, - ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2081918629] = { "(50-100)% increased effect of Socketed Items" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", statOrder = { 72 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [231726304] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Shield" }, } }, - ["UniqueAtziriSplendourArmour1"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, - ["UniqueAtziriSplendourEvasion1"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(200-300)% increased Evasion Rating" }, } }, - ["UniqueAtziriSplendourEnergyShield1"] = { affix = "", "(200-300)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(200-300)% increased Energy Shield" }, } }, - ["UniqueAtziriSplendourArmourAndEvasion1"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, - ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(120-180)% increased Armour and Energy Shield" }, } }, - ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(120-180)% increased Evasion and Energy Shield" }, } }, - ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(80-120)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9322 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, - ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 56 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [250458861] = { "Only Soul Cores can be Socketed in this item" }, } }, - ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(27-42)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(15-20)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(56-67)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(21-26)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(68-79)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(27-32)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(80-91)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3444888217] = { "(33-38)% increased Armour, Evasion or Energy Shield" }, } }, - ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6052 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, - ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 619 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 628 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, - ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 736, 739, 749 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, - ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 907 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, - ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6453 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3749 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, - ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4289 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, - ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6137 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, - ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 9811 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, - ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1066 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, - ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7194 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7231 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, - ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 47 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, - ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, - ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, - ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1661347488] = { "Lose (2.5-5)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1463 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2357996603] = { "(-30-30)% reduced Totem Duration" }, } }, - ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2820 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3910614548] = { "25% increased Attack and Cast Speed if you've summoned a Totem Recently" }, } }, - ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2112395885] = { "(20-25)% increased amount of Life Leeched" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { affix = "", "+(100-150) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2968503605] = { "25% increased Flammability Magnitude" }, } }, - ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [472520716] = { "(6-10)% of Damage taken Recouped as Mana" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(50-150) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [53045048] = { "+(50-150) to Evasion Rating" }, } }, - ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(1-60)% increased Fire Damage" }, } }, - ["UniqueMutatedVaalColdDamagePercentage"] = { affix = "", "(1-60)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(1-60)% increased Cold Damage" }, } }, - ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(1-60)% increased Lightning Damage" }, } }, - ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(1-60)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-60)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 6910 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, - ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 4970 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, - ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(5-10)% of Damage taken Recouped as Life" }, } }, - ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(10-30)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [1379411836] = { "+(17-23) to all Attributes" }, } }, - ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5452 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9122 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2968503605] = { "(15-25)% increased Flammability Magnitude" }, } }, - ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3791899485] = { "(26-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5146 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, - ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2651 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [2839036860] = { "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-60-60)% to Lightning Resistance" }, } }, - ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [3484657501] = { "+(60-75) to Armour" }, } }, - ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, - ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3772 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3481736410] = { "(10-25)% increased Area of Effect if you've Killed Recently" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, - ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, - ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, - ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [1782086450] = { "(33-66)% faster start of Energy Shield Recharge" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, - ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [101878827] = { "(15-30)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(12-20)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(12-20)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6065 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, - ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [3759663284] = { "(16-24)% increased Projectile Speed" }, } }, - ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6419 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, - ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [498214257] = { "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, - ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(90-120) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-12) maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times", statOrder = { 8293 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [233359425] = { "+(8-12) maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times" }, } }, - ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6375 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, - ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "25% increased Attack Speed" }, } }, - ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(33-66)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, - ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9158 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, - ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5185 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, - ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 9426 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, - ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 9425 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, - ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [4283407333] = { "+(2-4) to Level of all Skills" }, } }, - ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [3655769732] = { "+(5-10)% to Quality of all Skills" }, } }, - ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, - ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-60) to (70-90) Physical Damage" }, } }, - ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(25-50)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(25-50)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4576 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(25-50)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [3484657501] = { "+(220-320) to Armour" }, } }, - ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, - ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2168 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value" }, } }, - ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8991 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(100-150)% increased Elemental Damage with Attacks" }, } }, - ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(2-4)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 9705 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, - ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [3484657501] = { "+(100-200) to Armour" }, } }, - ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [53045048] = { "+(100-200) to Evasion Rating" }, } }, - ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4065505214] = { "(10-20)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3791899485] = { "(20-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, - ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1073942215] = { "(10-20)% increased Freeze Duration on Enemies" }, } }, - ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, - ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-20)% increased Curse Magnitudes" }, } }, - ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 5847 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, - ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, - ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, - ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-6)% of Physical Attack Damage as Mana" }, } }, - ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 5990 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, - ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6409 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, - ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9123 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, - ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103650854] = { "(20-40)% increased effect of Arcane Surge on you" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [53045048] = { "+(150-200) to Evasion Rating" }, } }, - ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 9673 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, - ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, - ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [101878827] = { "(25-50)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6095, 6095.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, - ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7021 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, - ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [3470876581] = { "+(100-150) to Evasion Rating while on Low Life" }, } }, - ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3942946753] = { "Regenerate (2-3)% of maximum Life per second while on Low Life" }, } }, - ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on Hit" }, } }, - ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Effect of Poison you inflict on targets that are not Poisoned", statOrder = { 8923 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Effect of Poison you inflict on targets that are not Poisoned" }, } }, - ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 5223 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skills" }, } }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4543 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, - ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 9861 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3190121041] = { "(50-100)% of Volatility Physical Damage Taken as Cold Damage" }, } }, - ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6017 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(70-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, - ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 8919 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, - ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, - ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5421 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, - ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHashes = { [3872306017] = { "(-60-60)% reduced Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4600 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, - ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-26)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(2-4) to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, - ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5225 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, - ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4388 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, - ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [3484657501] = { "+(260-400) to Armour" }, } }, - ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-20)% Lightning Resistance" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7423, 7423.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, - ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHashes = { [2866361420] = { "(-30-30)% reduced Armour" }, } }, - ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [2106365538] = { "(-30-30)% reduced Evasion Rating" }, } }, - ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [3489782002] = { "+(-30-30) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalFireDamagePercentage1"] = { affix = "", "(-30-30)% reduced Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(-30-30)% reduced Fire Damage" }, } }, - ["UniqueMutatedVaalColdDamagePercentage1"] = { affix = "", "(-30-30)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(-30-30)% reduced Cold Damage" }, } }, - ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(-30-30)% reduced Lightning Damage" }, } }, - ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(-30-30)% reduced Chaos Damage" }, } }, - ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (-30-30)% reduced Damage" }, } }, - ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9387 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, - ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9392 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9403 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(20-40)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(20-40)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10053 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 5722 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, - ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [53045048] = { "+(70-100) to Evasion Rating" }, } }, - ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10021 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, - ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "defences" }, tradeHashes = { [1868522266] = { "(10-20)% less Defences" }, } }, - ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, - ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-40)% of Damage as Extra Fire Damage" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, - ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, - ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4569 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, - ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7188 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, - ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, - ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHashes = { [1310194496] = { "(-30-30)% reduced Global Physical Damage" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(75-125)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHashes = { [1062208444] = { "(75-125)% increased Armour" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(75-125)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [124859000] = { "(75-125)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(75-125)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHashes = { [4015621042] = { "(75-125)% increased Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(75-125)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [2451402625] = { "(75-125)% increased Armour and Evasion" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(75-125)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHashes = { [3321629045] = { "(75-125)% increased Armour and Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(75-125)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [1999113824] = { "(75-125)% increased Evasion and Energy Shield" }, } }, - ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3639275092] = { "(30-50)% reduced Attribute Requirements" }, } }, - ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [3771516363] = { "(6-9)% additional Physical Damage Reduction" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(20-40)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(20-40)% of Damage taken Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(20-40)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(20-40)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 9% of Physical Attack Damage as Life" }, } }, - ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 6% of Physical Attack Damage as Mana" }, } }, - ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, - ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(50-75)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHashes = { [2866361420] = { "(50-75)% increased Armour" }, } }, - ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(50-75)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [2106365538] = { "(50-75)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(50-75)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHashes = { [2482852589] = { "(50-75)% increased maximum Energy Shield" }, } }, - ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(120-200)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(120-200)% increased Thorns damage" }, } }, - ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(30-49)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(30-49)% to Chaos Resistance" }, } }, - ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, - ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, - ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, - ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, - ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-60) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3981240776] = { "+(40-60) to Spirit" }, } }, - ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (25-40)% Fire Resistance" }, } }, - ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (25-40)% Cold Resistance" }, } }, - ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (25-40)% Lightning Resistance" }, } }, - ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, - ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+(2-3) to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+(2-3) to Maximum Endurance Charges" }, } }, - ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+(2-3) to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+(2-3) to Maximum Frenzy Charges" }, } }, - ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+(2-3) to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+(2-3) to Maximum Power Charges" }, } }, - ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [803737631] = { "+(150-300) to Accuracy Rating" }, } }, - ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [680068163] = { "(50-75)% increased Stun Threshold" }, } }, - ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [3780644166] = { "(50-75)% increased Freeze Threshold" }, } }, - ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(30-40)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(30-40)% reduced Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [44972811] = { "(35-50)% increased Life Regeneration rate" }, } }, - ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [789117908] = { "(35-50)% increased Mana Regeneration Rate" }, } }, - ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(15-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(15-25)% increased Block chance" }, } }, - ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-6)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [480796730] = { "+(4-6)% to maximum Block chance" }, } }, - ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [762600725] = { "(40-55) Life gained when you Block" }, } }, - ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2122183138] = { "(20-30) Mana gained when you Block" }, } }, - ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-35)% to all Elemental Resistances" }, } }, - ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, - ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, - ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, - ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(2-3) to Level of all Chaos Spell Skills" }, } }, - ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, - ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, - ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, - ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3917489142] = { "(25-35)% increased Rarity of Items found" }, } }, - ["CorruptionUpgradeAllDamage1"] = { affix = "", "(50-75)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [2154246560] = { "(50-75)% increased Damage" }, } }, - ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [970213192] = { "(8-16)% increased Skill Speed" }, } }, - ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(35-60)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-60)% increased Critical Damage Bonus" }, } }, - ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [4283407333] = { "+(2-3) to Level of all Skills" }, } }, - ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, - ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(35-50) to Dexterity" }, } }, - ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(35-50) to Intelligence" }, } }, - ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-75)% increased Physical Damage" }, } }, - ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, - ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-240)% increased Spell Damage" }, } }, - ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-60)% increased Spirit" }, } }, - ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-44) to (55-72) Fire Damage" }, } }, - ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-80) to (91-101) Fire Damage" }, } }, - ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-42) to (53-69) Cold Damage" }, } }, - ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { affix = "", "Adds (51-57) to (88-96) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (51-57) to (88-96) Cold Damage" }, } }, - ["CorruptionUpgradeLocalAddedLightningDamage1"] = { affix = "", "Adds (1-2) to (79-103) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (79-103) Lightning Damage" }, } }, - ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (131-141) Lightning Damage" }, } }, - ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (27-31) to (42-48) Chaos damage" }, } }, - ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-46) to (67-75) Chaos damage" }, } }, - ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(15-25)% to Critical Damage Bonus" }, } }, - ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, - ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, - ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(25-50)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2301191210] = { "(25-50)% chance to Blind Enemies on hit" }, } }, - ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(140-200)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2968503605] = { "(50-75)% increased Flammability Magnitude" }, } }, - ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, - ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [293638271] = { "(50-75)% increased chance to Shock" }, } }, - ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-75)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3695891184] = { "Gain (40-55) Life per enemy killed" }, } }, - ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, - ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-35)% increased Cast Speed" }, } }, - ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(50-75)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHashes = { [1782086450] = { "(50-75)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (50-75)% increased Damage" }, } }, - ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (15-25)% increased Attack Speed" }, } }, - ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (15-25)% increased Cast Speed" }, } }, - ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-45)% increased Critical Damage Bonus" }, } }, - ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2321178454] = { "(50-75)% chance to Pierce an Enemy" }, } }, - ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-50)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-50)% chance to Chain an additional time from terrain" }, } }, - ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(14-16) to Strength" }, } }, - ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(14-16) to Dexterity" }, } }, - ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(14-16) to Intelligence" }, } }, - ["CorruptionUpgradeJewelFireResist1"] = { affix = "", "+(15-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-20)% to Fire Resistance" }, } }, - ["CorruptionUpgradeJewelColdResist1"] = { affix = "", "+(15-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-20)% to Cold Resistance" }, } }, - ["CorruptionUpgradeJewelLightningResist1"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, - ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "upgraded_corruption_mod", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(30-50)% of Armour also applies to Elemental Damage" }, } }, - ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (30-50)% of Evasion Rating" }, } }, - ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, - ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, - ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "upgraded_corruption_mod", "life", "defences" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, - ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1381 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-20)% increased Mana Recovery rate" }, } }, - ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3240073117] = { "(10-20)% increased Life Recovery rate" }, } }, - ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 8860 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHashes = { [1904530666] = { "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, - ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, - ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 9647 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHashes = { [4129825612] = { "(3-6)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(3-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(3-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(3-6)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-3)% to Maximum Chaos Resistance" }, } }, - ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, - ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 8524 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, - ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9180 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, - ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4568 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, - ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, - ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { affix = "", "Gain (20-35)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (20-35)% of Damage as Extra Fire Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { affix = "", "Gain (20-35)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (20-35)% of Damage as Extra Cold Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { affix = "", "Gain (20-35)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (20-35)% of Damage as Extra Lightning Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { affix = "", "Gain (20-35)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (20-35)% of Damage as Extra Physical Damage" }, } }, - ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { affix = "", "Gain (20-35)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (20-35)% of Damage as Extra Chaos Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { affix = "", "Gain (35-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (35-50)% of Damage as Extra Fire Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { affix = "", "Gain (35-50)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (35-50)% of Damage as Extra Cold Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { affix = "", "Gain (35-50)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (35-50)% of Damage as Extra Lightning Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (35-50)% of Damage as Extra Physical Damage" }, } }, - ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (35-50)% of Damage as Extra Chaos Damage" }, } }, - ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [3655769732] = { "+10% to Quality of all Skills" }, } }, - ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 9640 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, - ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, - ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-10)% increased Dexterity" }, } }, - ["CorruptionUpgradePercentageIntelligence"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["CorruptionUpgradePercentageAllAttributesCopy"] = { affix = "", "(3-6)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(3-6)% increased Attributes" }, } }, - ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, - ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, - ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2541588185] = { "(15-30)% increased Duration" }, } }, - ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, - ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-4) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, - ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, - ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, - ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, - ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [2901213448] = { "+(1-2) to Level of all Elemental Skills" }, } }, - ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5508 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, - ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, - ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1073942215] = { "(20-30)% increased Freeze Duration on Enemies" }, } }, - ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, - ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [274716455] = { "(60-90)% increased Critical Spell Damage Bonus" }, } }, - ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4590 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, - ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, - ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [3759663284] = { "(20-40)% increased Projectile Speed" }, } }, - ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, - ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(20-30)% reduced Chill Duration on you" }, } }, - ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, - ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7469 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9433 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4599 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, - ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, - ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9296 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, + ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 910 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, + ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5391 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, + ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, + ["UniqueNearbyAlliesLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (50-100) Life per second", statOrder = { 920 }, level = 78, group = "AlliesInPresenceLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (50-100) Life per second" }, } }, + ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-40)% increased Critical Hit Chance for Attacks" }, } }, + ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-40)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["UniqueMaximumChaosResist1"] = { affix = "", "+(1-5)% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-5)% to Maximum Chaos Resistance" }, } }, + ["UniqueArmourAppliesToChaosDamage1"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4634 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 1028 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1752419596] = { "Gain Deflection Rating equal to 20% of Armour" }, } }, + ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, + ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, + ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, + ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, + ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, + ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, + ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6478 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, + ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, + ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, + ["UniqueFlaskIncreasedRecoverySpeed2"] = { affix = "", "(25-50)% reduced Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(25-50)% reduced Recovery rate" }, } }, + ["UniqueFlaskIncreasedRecoverySpeed3"] = { affix = "", "70% reduced Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "70% reduced Recovery rate" }, } }, + ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(70-80)% reduced Amount Recovered" }, } }, + ["UniqueFlaskRecoveryAmount2"] = { affix = "", "(100-150)% increased Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(100-150)% increased Amount Recovered" }, } }, + ["UniqueFlaskRecoveryAmount3"] = { affix = "", "(200-300)% increased Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(200-300)% increased Amount Recovered" }, } }, + ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, + ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 858 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire damage to Attacks" }, } }, + ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, + ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1331 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, + ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 1050 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(25-40)% increased Stun Buildup" }, } }, + ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2900 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, + ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2268 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (20-30)% chance to cause Bleeding" }, } }, + ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 984 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, + ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1067 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "100% chance to Pierce an Enemy" }, } }, + ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1550 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(20-30)% increased Arrow Speed" }, } }, + ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-30)% increased Critical Hit Chance for Attacks" }, } }, + ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2-4) Life Regeneration per second" }, } }, + ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 992 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 993 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, + ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 884 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, + ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 886 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["AmuletImplicitRunicWard1"] = { affix = "", "+(30-40) to maximum Runic Ward", statOrder = { 889 }, level = 23, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-40) to maximum Runic Ward" }, } }, + ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 990 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, + ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 895 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, + ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 940 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, + ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, + ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed6"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, + ["AmuletImplicitPrefixSuffixAllowed7"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["AmuletImplicitPrefixSuffixAllowed8"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, + ["AmuletImplicitPrefixSuffixAllowed9"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 62, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7717 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, + ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 879 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(120-160) to Accuracy Rating" }, } }, + ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 986 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, + ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(7-10)% to all Elemental Resistances" }, } }, + ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 940 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, + ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 57 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [958696139] = { "Grants 1 additional Skill Slot" }, } }, + ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 613 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, + ["RingImplicitMaximumQualityAdditional1"] = { affix = "", "+20% to Maximum Quality", statOrder = { 614 }, level = 50, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, + ["RingImplicitMaximumQualityAdditional2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 614 }, level = 50, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, + ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, + ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [3182714256] = { "+2 Prefix Modifiers allowed" }, } }, + ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 18, 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+2 Suffix Modifiers allowed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, + ["RingImplicitMaximumResistance"] = { affix = "", "+1% to all maximum Resistances", statOrder = { 1492 }, level = 65, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["RingImplicitPercentLife"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 888 }, level = 50, group = "IncreasedLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, + ["RingImplicitPercentMana"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 893 }, level = 50, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, + ["RingImplicitPhysicalDamage2"] = { affix = "", "Adds (6-9) to (11-15) Physical Damage to Attacks", statOrder = { 857 }, level = 50, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (11-15) Physical Damage to Attacks" }, } }, + ["RingImplicitChaosDamage"] = { affix = "", "(11-23)% increased Chaos Damage", statOrder = { 875 }, level = 59, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-23)% increased Chaos Damage" }, } }, + ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7716 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["RingImplicitFireColdResistance"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 1015 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, + ["RingImplicitFireLightningResistance"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 1017 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, + ["RingImplicitColdLightningResistance"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 1020 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, + ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, + ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, + ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 899 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(15-20)% increased Charm Effect Duration" }, } }, + ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(140-180) to Armour", statOrder = { 880 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(140-180) to Armour" }, } }, + ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5592 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, + ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1048 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, + ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5591 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2981 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, + ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6623 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, + ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6865 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, + ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7715 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["BeltImplicitCastSpeed1"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 986 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["BeltImplicitStrength1"] = { affix = "", "+(15-20) to Strength", statOrder = { 991 }, level = 40, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, + ["BeltImplicitLightningDamage1"] = { affix = "", "Adds 1 to (20-30) Lightning damage to Attacks", statOrder = { 860 }, level = 40, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning damage to Attacks" }, } }, + ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4763 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, + ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4763 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, + ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4763 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, + ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 688 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1691862754] = { "Used when you become Frozen" }, } }, + ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 686 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3676540188] = { "Used when you start Bleeding" }, } }, + ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 690 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1412682799] = { "Used when you become Poisoned" }, } }, + ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 689 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585126960] = { "Used when you become Ignited" }, } }, + ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 691 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3699444296] = { "Used when you become Shocked" }, } }, + ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 705 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810482573] = { "Used when you become Stunned" }, } }, + ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 692 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2778646494] = { "Used when you are affected by a Slow" }, } }, + ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 696 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854901951] = { "Used when you take Fire damage from a Hit" }, } }, + ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 694 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2994271459] = { "Used when you take Cold damage from a Hit" }, } }, + ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 703 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2016937536] = { "Used when you take Lightning damage from a Hit" }, } }, + ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 693 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310778564] = { "Used when you take Chaos damage from a Hit" }, } }, + ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you kill a Rare or Unique enemy", statOrder = { 702 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010341289] = { "Used when you kill a Rare or Unique enemy" }, } }, + ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 684 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4146282829] = { "Used when you become Cursed" }, } }, + ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(30-40)% increased Stun Threshold" }, } }, + ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-2.5)% of maximum Life per second" }, } }, + ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, + ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-50)% faster start of Energy Shield Recharge" }, } }, + ["BodyArmourImplicitEnergyShieldRate1"] = { affix = "", "(20-25)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-25)% increased Energy Shield Recharge Rate" }, } }, + ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, + ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, + ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, + ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, + ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (15-25)% reduced Critical Damage Bonus" }, } }, + ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(15-25)% of Armour also applies to Elemental Damage" }, } }, + ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-14)% of Damage taken Recouped as Life" }, } }, + ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1620 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(10-15)% reduced Elemental Ailment Duration on you" }, } }, + ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 950 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2251279027] = { "+1 to Level of all Corrupted Skill Gems" }, } }, + ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10478 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, + ["BodyArmourImplicitLocalMaximumWardUnique1"] = { affix = "", "+(750-1000) to maximum Runic Ward", statOrder = { 844 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(750-1000) to maximum Runic Ward" }, } }, + ["VerisiumHelmetImplicitIgniteMagnitudeUnique1"] = { affix = "", "(30-50)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-50)% increased Ignite Magnitude" }, } }, + ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 6% of Physical Damage as Life" }, } }, + ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, + ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7679 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7895 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, + ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, + ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1961 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, + ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7627 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, + ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (34-43) Life per enemy killed" }, } }, + ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, + ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7612 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, + ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7897 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, + ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-40)% increased Stun Buildup" }, } }, + ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, + ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1777 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, + ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1136 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, + ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7675 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, + ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7625 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, + ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10468 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["MaceImplicitWardUnique1"] = { affix = "", "+(100-150) to maximum Runic Ward", statOrder = { 889 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(100-150) to maximum Runic Ward" }, } }, + ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, + ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1718 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, + ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9568 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, + ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, + ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(14-18)% to Block chance", statOrder = { 1122 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(14-18)% to Block chance" }, } }, + ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7772 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, + ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7789 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, + ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, + ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7575 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, + ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6527 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, + ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1040 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, + ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 2011 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "(15-25)% chance to Blind Enemies on hit" }, } }, + ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, + ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1506 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 8 Mana per Enemy Hit" }, } }, + ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 1044 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches 4% of Physical Damage as Mana" }, } }, + ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7590 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, + ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1355 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, + ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7599 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, + ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7575 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, + ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 1122 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-18)% to Block chance" }, } }, + ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7897 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, + ["QuarterstaffImplicitRunicWard1"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 889 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-50) to maximum Runic Ward" }, } }, + ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7578 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, + ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9498 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, + ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1551 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, + ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6922 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, + ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4165 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, + ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7624 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, + ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3148 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(20-30)% increased Cooldown Recovery Rate for throwing Traps" }, } }, + ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+16 to Stun Threshold" }, } }, + ["BootsImplicitMovementSpeedVerisium1"] = { affix = "", "5% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["BootsImplicitMovementSpeedVerisium2"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1247628870] = { "Small Passive Skills in Radius also grant 1% increased maximum Mana" }, } }, + ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1809641701] = { "Small Passive Skills in Radius also grant 1% increased maximum Life" }, } }, + ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [1316656343] = { "Small Passive Skills in Radius also grant +8 to maximum Life" }, } }, + ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [1294464552] = { "Small Passive Skills in Radius also grant +8 to maximum Mana" }, } }, + ["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [3474941090] = { "Small Passive Skills in Radius also grant (4-6)% reduced Ignite Duration on you" }, } }, + ["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [860443350] = { "Small Passive Skills in Radius also grant (4-6)% reduced Freeze Duration on you" }, } }, + ["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 1065 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1627878766] = { "Small Passive Skills in Radius also grant (4-6)% reduced Shock duration on you" }, } }, + ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 1, tradeHashes = { [2948688907] = { "Small Passive Skills in Radius also grant +(2-4)% to Fire Resistance" }, } }, + ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 1, tradeHashes = { [2884937919] = { "Small Passive Skills in Radius also grant +(2-4)% to Cold Resistance" }, } }, + ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 1, tradeHashes = { [3994876825] = { "Small Passive Skills in Radius also grant +(2-4)% to Lightning Resistance" }, } }, + ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 1, tradeHashes = { [2264240911] = { "Small Passive Skills in Radius also grant +(2-3)% to Chaos Resistance" }, } }, + ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [4151994709] = { "Notable Passive Skills in Radius also grant +1% to Maximum Fire Resistance" }, } }, + ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [1862508014] = { "Notable Passive Skills in Radius also grant +1% to Maximum Cold Resistance" }, } }, + ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [2217513089] = { "Notable Passive Skills in Radius also grant +1% to Maximum Lightning Resistance" }, } }, + ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [1731760476] = { "Notable Passive Skills in Radius also grant +1% to Maximum Chaos Resistance" }, } }, + ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [1842384813] = { "Notable Passive Skills in Radius also grant (2-3)% increased Strength" }, } }, + ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [40618390] = { "Notable Passive Skills in Radius also grant (2-3)% increased Intelligence" }, } }, + ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHashes = { [2717786748] = { "Notable Passive Skills in Radius also grant (2-3)% increased Dexterity" }, } }, + ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 894 }, level = 1, group = "JewelSpirit", weightKey = { }, weightVal = { }, modTags = { }, nodeType = 2, tradeHashes = { [3991877392] = { "Notable Passive Skills in Radius also grant +(8-12) to Spirit" }, } }, + ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHashes = { [338620903] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Fire Damage" }, } }, + ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHashes = { [833138896] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Cold Damage" }, } }, + ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHashes = { [852470634] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Lightning Damage" }, } }, + ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHashes = { [2603051299] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7731 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, + ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7724 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, + ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "-(20-10) to Strength" }, } }, + ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-15) to Strength" }, } }, + ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, + ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, + ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-10) to Strength" }, } }, + ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(0-10) to Strength" }, } }, + ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, + ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-30) to Strength" }, } }, + ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, + ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength40"] = { affix = "", "+(8-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-15) to Strength" }, } }, + ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, + ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength44"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength45"] = { affix = "", "+(20-30) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["UniqueStrength46"] = { affix = "", "+(30-40) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["UniqueStrength47"] = { affix = "", "+(15-20) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, + ["UniqueStrength48"] = { affix = "", "+(7-14) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(7-14) to Strength" }, } }, + ["UniqueStrength49"] = { affix = "", "+(15-25) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, + ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, + ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(0-10) to Dexterity" }, } }, + ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, + ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-15) to Dexterity" }, } }, + ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, + ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, + ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, + ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity45"] = { affix = "", "+(13-23) to Dexterity", statOrder = { 992 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-23) to Dexterity" }, } }, + ["UniqueDexterity46"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["UniqueDexterity47"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, + ["UniqueDexterity48"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, + ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, + ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, + ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, + ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, + ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, + ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, + ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, + ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, + ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(0-10) to Intelligence" }, } }, + ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, + ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, + ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, + ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, + ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence44"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, + ["UniqueIntelligence45"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-15) to Intelligence" }, } }, + ["UniqueIntelligence46"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence47"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence48"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence49"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["UniqueIntelligence50"] = { affix = "", "+(25-35) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-35) to Intelligence" }, } }, + ["UniqueStrengthAndIntelligence1"] = { affix = "", "+(10-20) to Strength and Intelligence", statOrder = { 995 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-20) to Strength and Intelligence" }, } }, + ["UniqueStrengthAndIntelligence2"] = { affix = "", "+(20-30) to Strength and Intelligence", statOrder = { 995 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(20-30) to Strength and Intelligence" }, } }, + ["UniqueStrengthAndIntelligence3"] = { affix = "", "+(15-25) to Strength and Intelligence", statOrder = { 995 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(15-25) to Strength and Intelligence" }, } }, + ["UniqueStrengthAndIntelligence4"] = { affix = "", "+(10-20) to Strength and Intelligence", statOrder = { 995 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-20) to Strength and Intelligence" }, } }, + ["UniqueStrengthAndDexterity1"] = { affix = "", "+(10-20) to Strength and Dexterity", statOrder = { 994 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(10-20) to Strength and Dexterity" }, } }, + ["UniqueDexterityAndIntelligence1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 996 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, + ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(50-100) to all Attributes" }, } }, + ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, + ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, + ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 990 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, + ["UniqueAllAttributes18"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, + ["UniqueAllAttributes19"] = { affix = "", "+(6-12) to all Attributes", statOrder = { 990 }, level = 78, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-12) to all Attributes" }, } }, + ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, + ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, + ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(20-10)% to Fire Resistance" }, } }, + ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, + ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, + ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, + ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, + ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(0-10)% to Fire Resistance" }, } }, + ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, + ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(15-10)% to Fire Resistance" }, } }, + ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, + ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, + ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, + ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-40-40)% to Fire Resistance" }, } }, + ["UniqueFireResist25"] = { affix = "", "+(50-100)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-100)% to Fire Resistance" }, } }, + ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, + ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, + ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, + ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, + ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(20-10)% to Cold Resistance" }, } }, + ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, + ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, + ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, + ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, + ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, + ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, + ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(0-10)% to Cold Resistance" }, } }, + ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, + ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, + ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, + ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, + ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, + ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-40-40)% to Cold Resistance" }, } }, + ["UniqueColdResist21"] = { affix = "", "+(50-100)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-100)% to Cold Resistance" }, } }, + ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(15-10)% to Cold Resistance" }, } }, + ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-10% to Cold Resistance" }, } }, + ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, + ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-15% to Cold Resistance" }, } }, + ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, + ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, + ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-15)% to Cold Resistance" }, } }, + ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["UniqueColdResist35"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["UniqueColdResist36"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, + ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, + ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, + ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, + ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(0-10)% to Lightning Resistance" }, } }, + ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(40-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, + ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, + ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-40-40)% to Lightning Resistance" }, } }, + ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-100)% to Lightning Resistance" }, } }, + ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, + ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, + ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-50)% to Lightning Resistance" }, } }, + ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, + ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-15)% to Lightning Resistance" }, } }, + ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-33)% to Lightning Resistance" }, } }, + ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, + ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, } }, + ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-30% to all Elemental Resistances" }, } }, + ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "-(20-5)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-40)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances27"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances28"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueAllResistances29"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-37)% to Chaos Resistance" }, } }, + ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(23-3)% to Chaos Resistance" }, } }, + ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-17% to Chaos Resistance" }, } }, + ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+13% to Chaos Resistance" }, } }, + ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, + ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-29)% to Chaos Resistance" }, } }, + ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1500 to maximum Life" }, } }, + ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, + ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, + ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, + ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, + ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, + ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-30) to maximum Life" }, } }, + ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, + ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+300 to maximum Life" }, } }, + ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, + ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, + ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-150) to maximum Life" }, } }, + ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 886 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-80) to maximum Life" }, } }, + ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, + ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, + ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, + ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["UniqueIncreasedLife51"] = { affix = "", "+(120-200) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-200) to maximum Life" }, } }, + ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, + ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, + ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, + ["UniqueIncreasedLife55"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["UniqueIncreasedLife56"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["UniqueIncreasedLife57"] = { affix = "", "+(70-120) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-120) to maximum Life" }, } }, + ["UniqueIncreasedLife58"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, + ["UniqueIncreasedLife59"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, + ["UniqueChanceToAvoidProjectiles1"] = { affix = "", "33% chance to avoid Projectiles", statOrder = { 4643 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "33% chance to avoid Projectiles" }, } }, + ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(20-30)% reduced maximum Life" }, } }, + ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, + ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, + ["UniqueMaximumLifeIncrease4"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, + ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, + ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 888 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, + ["UniqueMaximumLifeIncrease8"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, + ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, + ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["UniqueIncreasedMana2BigRange"] = { affix = "", "+(-10-40) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(-10-40) to maximum Mana" }, } }, + ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, + ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(0-20) to maximum Mana" }, } }, + ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, + ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-150) to maximum Mana" }, } }, + ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, + ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-90) to maximum Mana" }, } }, + ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, + ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-45) to maximum Mana" }, } }, + ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, + ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, + ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-100) to maximum Mana" }, } }, + ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 891 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, + ["UniqueIncreasedMana53"] = { affix = "", "+(300-400) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(300-400) to maximum Mana" }, } }, + ["UniqueIncreasedMana54"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["UniqueMaximumManaIncrease1"] = { affix = "", "(10-15)% increased maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } }, + ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, + ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, + ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% reduced maximum Mana" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(100-150) to Armour" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(150-200) to Armour" }, } }, + ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(75-125) to Evasion Rating" }, } }, + ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(40-50) to Evasion Rating" }, } }, + ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, + ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+100 to Evasion Rating" }, } }, + ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-600) to Evasion Rating" }, } }, + ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, + ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, + ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-50)% increased Armour" }, } }, + ["UniqueIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(30-50)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-50)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(0-40) to Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(40-60) to Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(15-25) to Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(50-70) to Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+20 to Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating6"] = { affix = "", "+(100-150) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, + ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(50-70) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(0-30) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(15-25) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, + ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+100 to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(0-20) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 842 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-120) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 842 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-150) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShield18"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 840, 842 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(60-100) to Evasion Rating" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 840, 842 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(20-25) to Evasion Rating" }, [4052037485] = { "+(10-15) to maximum Energy Shield" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(500-600)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(500-600)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-60)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-50)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(150-200)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(400-500)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-160)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(300-400)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(300-400)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(200-300)% increased Armour", statOrder = { 845 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-120)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent31"] = { affix = "", "(350-450)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-450)% increased Armour" }, } }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent32"] = { affix = "", "(150-200)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "50% reduced Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-140)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(250-300)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(250-300)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(70-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-300)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-200)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-80)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent34"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent35"] = { affix = "", "(210-240)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(210-240)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-300)% increased Evasion Rating" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(30-50)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-200)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-70)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(70-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent27"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedEnergyShieldPercent28"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(30-50)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-80)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(20-30)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-70)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(50-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 849 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(300-450)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-450)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "50% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(600-800)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-200)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion32"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion33"] = { affix = "", "(150-250)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-250)% increased Armour and Evasion" }, } }, + ["UniqueLocalIncreasedArmourAndEvasion34"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, + ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10627 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-60)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-60)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(333-666)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(240-340)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-340)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield27"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield28"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedArmourAndEnergyShield29"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-60)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(50-80)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(40-60)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-80)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-120)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(60-100)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(50-70)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(1-111)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalIncreasedEvasionAndEnergyShield20"] = { affix = "", "(200-300)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-300)% increased Evasion and Energy Shield" }, } }, + ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(300-400)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(300-400)% increased Armour, Evasion and Energy Shield" }, } }, + ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(150-200)% increased Armour, Evasion and Energy Shield" }, } }, + ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(150-200)% increased Armour, Evasion and Energy Shield" }, } }, + ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(200-250)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(200-250)% increased Armour, Evasion and Energy Shield" }, } }, + ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, + ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "50% increased Attribute Requirements" }, } }, + ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, + ["UniqueReducedLocalAttributeRequirements6"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, + ["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(40-60) to Stun Threshold" }, } }, + ["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(30-50) to Stun Threshold" }, } }, + ["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, + ["UniqueStunThreshold4"] = { affix = "", "+(75-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(75-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold5"] = { affix = "", "+(50-70) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(50-70) to Stun Threshold" }, } }, + ["UniqueStunThreshold6"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, + ["UniqueStunThreshold7"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, + ["UniqueStunThreshold8"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, + ["UniqueStunThreshold9"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold10"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold11"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold12"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, + ["UniqueStunThreshold13"] = { affix = "", "+2500 to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+2500 to Stun Threshold" }, } }, + ["UniqueStunThreshold14"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-100) to Stun Threshold" }, } }, + ["UniqueStunThreshold15"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, + ["UniqueStunThreshold16"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(60-80) to Stun Threshold" }, } }, + ["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(100-150) to Stun Threshold" }, } }, + ["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(150-200) to Stun Threshold" }, } }, + ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+(200-300) to Stun Threshold" }, } }, + ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, + ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["UniqueMovementVelocity17"] = { affix = "", "(15-20)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-20)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-30)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, + ["UniqueMovementVelocity26"] = { affix = "", "5% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["UniqueMovementVelocity29"] = { affix = "", "30% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5303 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, + ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, + ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds (1-4) to (8-12) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-4) to (8-12) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage1BigRange"] = { affix = "", "Adds (0-5) to (6-18) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (0-5) to (6-18) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (8-10) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (5-6) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-16) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (13-17) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, + ["UniqueAddedPhysicalDamage9"] = { affix = "", "Adds (20-28) to (34-42) Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (20-28) to (34-42) Physical Damage to Attacks" }, } }, + ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 858 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, + ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-5) to (6-8) Cold damage to Attacks" }, } }, + ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, + ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (13-20) to (21-31) Cold damage to Attacks" }, } }, + ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, + ["UniqueAddedLightningDamage2"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-100) Lightning damage to Attacks" }, } }, + ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning damage to Attacks" }, } }, + ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1287 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (4-6) to (8-10) Chaos Damage to Attacks" }, } }, + ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1287 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-19) to (20-30) Chaos Damage to Attacks" }, } }, + ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1287 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-8) to (10-12) Chaos Damage to Attacks" }, } }, + ["UniqueAddedChaosDamage4"] = { affix = "", "Adds (35-44) to (50-62) Chaos Damage to Attacks", statOrder = { 1287 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (35-44) to (50-62) Chaos Damage to Attacks" }, } }, + ["UniqueAddedChaosDamage5"] = { affix = "", "Adds (19-23) to (31-37) Chaos Damage to Attacks", statOrder = { 1287 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (19-23) to (31-37) Chaos Damage to Attacks" }, } }, + ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-10) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-18) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (6-8) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-20) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-14) to (16-20) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (8-10) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-15) to (22-25) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (24-28) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-15) to (22-25) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (58-65) to (102-110) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-36) to (75-81) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-48) to (65-72) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (40-50) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-15) to (18-24) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (39-48) to (69-79) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-26) to (25-31) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (22-28) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-26) to (27-32) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-18) to (30-36) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (21-26) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-52) to (71-82) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-30) to (35-55) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-47) to (53-79) Physical Damage" }, } }, + ["UniqueLocalAddedPhysicalDamage27"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-20) to (23-27) Physical Damage" }, } }, + ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (33-41) to (47-53) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (8-10) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-32) to (40-50) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (15-21) to (26-32) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (126-193) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (71-93) to (107-168) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage7"] = { affix = "", "Adds (503-589) to (647-713) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (503-589) to (647-713) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage8"] = { affix = "", "Adds (83-97) to (123-153) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (83-97) to (123-153) Fire Damage" }, } }, + ["UniqueLocalAddedFireDamage9"] = { affix = "", "Adds (48-59) to (75-97) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (48-59) to (75-97) Fire Damage" }, } }, + ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (15-18) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (16-20) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-16) to (22-25) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-10) to (13-15) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-15) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-18) to (24-29) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage7"] = { affix = "", "Adds (24-31) to (36-46) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (24-31) to (36-46) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage8"] = { affix = "", "Adds (35-53) to (65-80) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-53) to (65-80) Cold Damage" }, } }, + ["UniqueLocalAddedColdDamage9"] = { affix = "", "Adds (150-200) to (350-400) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (350-400) Cold Damage" }, } }, + ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (80-120) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-45) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-55) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-80) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (19-29) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (300-500) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (300-500) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (43-67) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (43-67) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage8"] = { affix = "", "Adds 1 to (193-207) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (193-207) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage9"] = { affix = "", "Adds (1-5) to (66-90) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-5) to (66-90) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage10"] = { affix = "", "Adds 1 to (110-115) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (110-115) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage11"] = { affix = "", "Adds 1 to (200-300) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (200-300) Lightning Damage" }, } }, + ["UniqueLocalAddedLightningDamage12"] = { affix = "", "Adds (1-8) to (123-152) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (123-152) Lightning Damage" }, } }, + ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (25-36) to (44-55) Chaos damage" }, } }, + ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (167-201) to (267-333) Chaos damage" }, } }, + ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 907 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage" }, } }, + ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 908 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage" }, } }, + ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 909 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage" }, } }, + ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-20)% increased Global Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-160)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-350)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-350)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-200)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-240)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(600-700)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(70-100)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(90-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent21"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-250)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent22"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-100)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent23"] = { affix = "", "(60-90)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-90)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent24"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent25"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent26"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent27"] = { affix = "", "(240-300)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(240-300)% increased Physical Damage" }, } }, + ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal 50% increased Damage" }, } }, + ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon9"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon10"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon11"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-120)% increased Spell Damage" }, } }, + ["UniqueSpellDamageOnWeapon12"] = { affix = "", "(71-113)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(71-113)% increased Spell Damage" }, } }, + ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(80-120)% increased Fire Damage" }, } }, + ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(80-120)% increased Cold Damage" }, } }, + ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-120)% increased Lightning Damage" }, } }, + ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 949 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-3) to Level of all Spell Skills" }, } }, + ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 957 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(1-4) to Level of all Fire Skills" }, } }, + ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 961 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, } }, + ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 961 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+(2-4) to Level of all Lightning Skills" }, } }, + ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 956 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2901213448] = { "+(2-4) to Level of all Elemental Skills" }, } }, + ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, + ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, + ["UniqueGlobalMinionSpellSkillGemLevel3"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, + ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 970 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [805298720] = { "+(1-2) to Level of all Curse Skills" }, } }, + ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, + ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(7-12) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(0-6) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(20-25) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-6) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-25) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6-10) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-6) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3-5) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(30-60) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-20) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(10-15) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(8-12) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(5-10) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(25-35) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(15-30) Life Regeneration per second" }, } }, + ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "5 Life Regeneration per second" }, } }, + ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "100% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration8"] = { affix = "", "(50-100)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-100)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% reduced Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-35)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "25% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "40% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(-30-30)% reduced Mana Regeneration Rate" }, } }, + ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 5% of Physical Attack Damage as Life" }, } }, + ["UniqueLifeLeech2"] = { affix = "", "Leech 10% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 10% of Physical Attack Damage as Life" }, } }, + ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-8)% of Physical Damage as Life" }, } }, + ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 10% of Physical Damage as Life" }, } }, + ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (10-20)% of Physical Damage as Life" }, } }, + ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 1044 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-7)% of Physical Damage as Mana" }, } }, + ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 3 Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-15) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 30 Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-10) Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose 10 Life per enemy killed" }, } }, + ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (30-50) Life per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Lose 3 Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-10) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (12-18) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 5 Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (25-35) Mana per enemy killed" }, } }, + ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, + ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 25 Life per Enemy Hit with Attacks" }, } }, + ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, + ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1505 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 15 Mana per Enemy Hit with Attacks" }, } }, + ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-6)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% reduced Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% reduced Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-11)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "35% reduced Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed15"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["UniqueIncreasedAttackSpeed16"] = { affix = "", "(7-17)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-17)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-30)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(30-40)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-30)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-16)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed24"] = { affix = "", "(7-13)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-13)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed25"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed26"] = { affix = "", "(15-20)% reduced Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% reduced Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed27"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed28"] = { affix = "", "(14-22)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-22)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed29"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed30"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed31"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed32"] = { affix = "", "(12-22)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-22)% increased Attack Speed" }, } }, + ["UniqueLocalIncreasedAttackSpeed33"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 917 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (10-20)% increased Attack Speed" }, } }, + ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed2BigRange"] = { affix = "", "(-15-15)% reduced Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(-15-15)% reduced Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 986 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-8)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 986 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-30)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 986 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed21"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed22"] = { affix = "", "(8-16)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-16)% increased Cast Speed" }, } }, + ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (10-20)% increased Cast Speed" }, } }, + ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy1BigRange"] = { affix = "", "+(-200-400) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(-200-400) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(0-60) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(60-100) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(75-125) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-200) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-400) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-600) to Accuracy Rating" }, } }, + ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-(300-200) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-70) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(50-100) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(30-50) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(100-150) to Accuracy Rating" }, } }, + ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 834 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-500) to Accuracy Rating" }, } }, + ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(0-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-35)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(100-200)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance16"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+15% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-10)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-6)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-7)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance10"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance11"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(5-8)% to Critical Hit Chance" }, } }, + ["UniqueLocalCriticalStrikeChance12"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4-6)% to Critical Hit Chance" }, } }, + ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-40)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-50)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 915 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-30)% increased Critical Hit Chance" }, } }, + ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 915 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-50)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-15)% increased Critical Damage Bonus" }, } }, + ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, + ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, + ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-25)% to Critical Damage Bonus" }, } }, + ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-30)% to Critical Damage Bonus" }, } }, + ["UniqueLocalCriticalMultiplier3"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-30)% to Critical Damage Bonus" }, } }, + ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-50)% increased Critical Spell Damage Bonus" }, } }, + ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-30)% increased Critical Spell Damage Bonus" }, } }, + ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 916 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-50)% increased Critical Damage Bonus" }, } }, + ["UniqueSpellCriticalStrikeMultiplierPerSpellCritRecently1"] = { affix = "", "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplierPerSpellCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [2972244965] = { "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" }, } }, + ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9952 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease6BigRange"] = { affix = "", "(-20-20)% reduced Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-20-20)% reduced Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(0-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-25-25)% reduced Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, + ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, + ["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["UniqueLightRadius4"] = { affix = "", "20% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, + ["UniqueLightRadius5"] = { affix = "", "40% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, + ["UniqueLightRadius6"] = { affix = "", "25% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["UniqueLightRadius7"] = { affix = "", "30% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, + ["UniqueLightRadius8"] = { affix = "", "30% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, + ["UniqueLightRadius9"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["UniqueLightRadius10"] = { affix = "", "30% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, + ["UniqueLightRadius11"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["UniqueLightRadius12"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["UniqueLightRadius13"] = { affix = "", "30% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "30% increased Light Radius" }, } }, + ["UniqueLightRadius14"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["UniqueLightRadius15"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["UniqueLightRadius16"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, + ["UniqueLightRadius17"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, + ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% reduced Light Radius" }, } }, + ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1069 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "23% reduced Light Radius" }, } }, + ["UniqueLightRadius21"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, + ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(80-100)% increased Block chance" }, } }, + ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-20)% increased Block chance" }, } }, + ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-25)% increased Block chance" }, } }, + ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, + ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, + ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, + ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, + ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(30-50)% increased Block chance" }, } }, + ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, + ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-60)% increased Block chance" }, } }, + ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "30% reduced Block chance" }, } }, + ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["UniqueLocalBlockChance15"] = { affix = "", "(10-20)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-20)% increased Block chance" }, } }, + ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, + ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, + ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, + ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+100 to Spirit" }, } }, + ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+30 to Spirit" }, } }, + ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(25-35) to Spirit" }, } }, + ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(0-20) to Spirit" }, } }, + ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, + ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-40) to Spirit" }, } }, + ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-40) to Spirit" }, } }, + ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-50) to Spirit" }, } }, + ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-30) to Spirit" }, } }, + ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+(100-150) to Spirit" }, } }, + ["UniqueIncreasedSpirit14"] = { affix = "", "+50 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, + ["UniqueIncreasedSpirit15"] = { affix = "", "+75 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+75 to Spirit" }, } }, + ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, + ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(30-50)% increased Spirit" }, } }, + ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(25-35)% increased Spirit" }, } }, + ["UniqueLocalIncreasedSpiritPercent4"] = { affix = "", "(50-75)% increased Spirit", statOrder = { 856 }, level = 78, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(50-75)% increased Spirit" }, } }, + ["UniqueIncreasedMaximumSpiritPercent1"] = { affix = "", "(10-15)% increased Spirit", statOrder = { 1416 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(10-15)% increased Spirit" }, } }, + ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, + ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, + ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 1065 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(30-50)% reduced Shock duration on you" }, } }, + ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% reduced Chill Duration on you" }, } }, + ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(30-50)% reduced Freeze Duration on you" }, } }, + ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, + ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 1005 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "15% additional Physical Damage Reduction" }, } }, + ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, + ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, + ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, + ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to Maximum Lightning Resistance" }, } }, + ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "-(5-1)% to all Maximum Elemental Resistances" }, } }, + ["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-30)% reduced Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate4"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate5"] = { affix = "", "(50-100)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(50-100)% increased Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "1000% increased Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-50)% increased Energy Shield Recharge Rate" }, } }, + ["UniqueEnergyShieldRechargeRate8"] = { affix = "", "(15-30)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-30)% increased Energy Shield Recharge Rate" }, } }, + ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(15-25)% chance to Pierce an Enemy" }, } }, + ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 989 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 3 additional Arrows" }, } }, + ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2578 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2720781168] = { "Attack Projectiles Return if they Pierced at least (2-4) times" }, } }, + ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9523 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, + ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9513 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, + ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(30-50)% increased Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(40-60)% increased Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% reduced Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(-25-25)% reduced Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% increased Flask Life Recovery rate" }, } }, + ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(15-35)% increased Flask Life Recovery rate" }, } }, + ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(40-60)% increased Flask Mana Recovery rate" }, } }, + ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(-25-25)% reduced Flask Mana Recovery rate" }, } }, + ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, + ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, + ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 1048 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "50% increased Flask Charges used" }, } }, + ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1048 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, + ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5591 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, + ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5592 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, + ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5592 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, + ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 988 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(0-2) Charm Slot" }, } }, + ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 988 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(1-2) Charm Slot" }, } }, + ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 988 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, + ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, + ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, + ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "50% increased Flammability Magnitude" }, } }, + ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(30-50)% increased Flammability Magnitude" }, } }, + ["UniqueFreezeDamageIncrease1"] = { affix = "", "30% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "30% increased Freeze Buildup" }, } }, + ["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(40-50)% increased Freeze Buildup" }, } }, + ["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(30-50)% increased Freeze Buildup" }, } }, + ["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, + ["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, + ["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, + ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-100)% increased chance to Shock" }, } }, + ["UniqueShockChanceIncrease4"] = { affix = "", "(20-40)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-40)% increased chance to Shock" }, } }, + ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 1053 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [748522257] = { "(10-20)% increased Stun Duration" }, } }, + ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(30-50)% increased Stun Buildup" }, } }, + ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(20-30)% increased Stun Buildup" }, } }, + ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, + ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (150-200)% increased Stun Buildup" }, } }, + ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, + ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8885 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, + ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, + ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, + ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, } }, + ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% reduced Cold Damage" }, } }, + ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(15-30)% increased Elemental Damage" }, } }, + ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "100% increased Elemental Damage" }, } }, + ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(40-60)% increased Projectile Speed" }, } }, + ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(5-30)% of Damage taken Recouped as Life" }, } }, + ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "50% of Damage taken Recouped as Mana" }, } }, + ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-30)% of Damage taken Recouped as Mana" }, } }, + ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (40-60)% of Damage as Extra Fire Damage" }, } }, + ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain 25% of Damage as Extra Fire Damage" }, } }, + ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (30-50)% of Damage as Extra Fire Damage" }, } }, + ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain 25% of Damage as Extra Cold Damage" }, } }, + ["UniqueDamageGainedAsCold2"] = { affix = "", "Gain (10-20)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (10-20)% of Damage as Extra Cold Damage" }, } }, + ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain 25% of Damage as Extra Lightning Damage" }, } }, + ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain 27% of Damage as Extra Chaos Damage" }, } }, + ["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, + ["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "50% reduced Presence Area of Effect" }, } }, + ["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, + ["UniquePresenceRadius4"] = { affix = "", "(30-40)% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(30-40)% reduced Presence Area of Effect" }, } }, + ["UniquePresenceRadius5"] = { affix = "", "(60-80)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(60-80)% increased Presence Area of Effect" }, } }, + ["UniquePresenceRadius6"] = { affix = "", "(20-40)% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-40)% reduced Presence Area of Effect" }, } }, + ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 967 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1202301673] = { "+(1-2) to Level of all Projectile Skills" }, } }, + ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(1-2) to Level of all Melee Skills" }, } }, + ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1901 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2609822974] = { "Curses you inflict have infinite Duration" }, } }, + ["UniqueCurseAreaOfEffect1"] = { affix = "", "(20-30)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(20-30)% increased Area of Effect of Curses" }, } }, + ["UniqueReducedCurseEffectOnYou1"] = { affix = "", "(30-50)% reduced effect of Curses on you", statOrder = { 1909 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(30-50)% reduced effect of Curses on you" }, } }, + ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, + ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 50% reduced maximum Life" }, } }, + ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, + ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-100)% increased Damage" }, } }, + ["UniqueMinionDamage3"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, + ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, + ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, + ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, + ["UniqueFlaskExtraCharges2"] = { affix = "", "(50-60)% reduced Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(50-60)% reduced Charges" }, } }, + ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(100-150)% increased Charges per use" }, } }, + ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-15)% reduced Charges per use" }, } }, + ["UniqueFlaskChargesUsed3"] = { affix = "", "(50-75)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(50-75)% reduced Charges per use" }, } }, + ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 935 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "" }, } }, + ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 617 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1873752457] = { "Gains (0.15-0.2) Charges per Second" }, } }, + ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(15-25)% increased Duration" }, } }, + ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(10-20)% increased Duration" }, } }, + ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 899 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-50)% reduced Charm Effect Duration" }, } }, + ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6188 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, + ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, + ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 1% of maximum Life on Kill" }, } }, + ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (2-4)% of maximum Life on Kill" }, } }, + ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 1% of maximum Mana on Kill" }, } }, + ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10218 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, + ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10217 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, + ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 2198 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, + ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7581 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 829 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 829 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 829 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 829 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7588 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, + ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4520 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, + ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4524 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, + ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, + ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10626, 10626.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, + ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3978 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2356156926] = { "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life" }, } }, + ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3979 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [65133983] = { "Drop Shocked Ground while moving, lasting 8 seconds" }, } }, + ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3071 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5533 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, + ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10019 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, + ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1132 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "25% increased Block chance" }, } }, + ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1132 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "(10-15)% increased Block chance" }, } }, + ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+(5-10)% to maximum Block chance" }, } }, + ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-(20-10)% to maximum Block chance" }, } }, + ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7435 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, + ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1550 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(50-100)% increased Arrow Speed" }, } }, + ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2238 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "40% less Attack Damage" }, } }, + ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6426 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, + ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2259 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, + ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, + ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1907 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["UniqueCursesSpreadOnKill1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2682 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, + ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6750 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7163 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, + ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6621 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, + ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7916 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, + ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7913 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, + ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5472 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, + ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10390 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, + ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10391 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, + ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(100-150)% of Armour also applies to Elemental Damage" }, } }, + ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2909 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4112450013] = { "Moving while Bleeding doesn't cause you to take extra damage" }, } }, + ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2570 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, + ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6706, 6706.1, 6706.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, + ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9448 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, + ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4131 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, + ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10492 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, + ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4563 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, + ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4484 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["UniqueAdditionalGemQuality1"] = { affix = "", "+(2-5)% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(2-5)% to Quality of all Skills" }, } }, + ["UniqueAdditionalGemQuality1BigRange"] = { affix = "", "+(0-7)% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(0-7)% to Quality of all Skills" }, } }, + ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 1007 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (75-80)%" }, } }, + ["UniqueMaximumResistancesOverride1BigRange"] = { affix = "", "Your Maximum Resistances are (50-82)%", statOrder = { 1007 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (50-82)%" }, } }, + ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5545 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5545 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart2"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4634 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueLoreweaveBlackheart2BigRange"] = { affix = "", "+(0-30)% of Armour also applies to Chaos Damage", statOrder = { 4634 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(0-30)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueLoreweaveIcefang1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4271 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, + ["UniqueLoreweaveIcefang2"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4269 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, + ["UniqueLoreweaveVenopuncture1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4270 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, + ["UniqueLoreweaveVenopuncture2"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4268 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, + ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10224 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10224 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweaveDoedres1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1907 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["UniqueLoreweaveCracklecreep1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1945 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, + ["UniqueLoreweaveBlisteringBond1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2236 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, + ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4795 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueLoreweaveBlisteringBond3"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2631 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, + ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5643 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10394 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10394 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweaveDreamFragments1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1591 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, + ["UniqueLoreweaveWhisperBrotherhood1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1714 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, + ["UniqueLoreweaveCallBrotherhood1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1711 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9952 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9952 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveMingsHeart1"] = { affix = "", "Gain (10-15)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (10-15)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveMingsHeart1BigRange"] = { affix = "", "Gain (0-25)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (0-25)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveBlackflameIgniteDealsChaosDamageInstead1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1075 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, + ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6373 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueLoreweaveBlackflameWitherAlsoIncreasesFireDamage1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4093 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, + ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9231 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniqueLoreweaveDeathRush1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2415 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, + ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6384 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueLoreweaveThiefsTorment1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1910 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, + ["UniqueLoreweaveThiefsTorment1BigRange"] = { affix = "", "(-100-100)% reduced Duration of Curses on you", statOrder = { 1910 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "(-100-100)% reduced Duration of Curses on you" }, } }, + ["UniqueLoreweaveEvergrasping1"] = { affix = "", "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", statOrder = { 4278 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveEvergrasping1BigRange"] = { affix = "", "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", statOrder = { 4278 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9526 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, + ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9280 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, + ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9525 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueLoreweaveHeartbound1"] = { affix = "", "(200-300) Physical Damage taken on Minion Death", statOrder = { 2760 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(200-300) Physical Damage taken on Minion Death" }, } }, + ["UniqueLoreweaveHeartbound1BigRange"] = { affix = "", "(1-1000) Physical Damage taken on Minion Death", statOrder = { 2760 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(1-1000) Physical Damage taken on Minion Death" }, } }, + ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, + ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6872 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7540 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6328 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueLoreweaveAndvarius1"] = { affix = "", "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 941, 941.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, + ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRing"] = { affix = "", "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 941, 941.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, + ["UniqueLoreweaveAndvarius1BigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 941, 941.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, + ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRingBigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 941, 941.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, + ["UniqueLoreweaveBurstingDecay1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4454 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, + ["UniqueLoreweaveBurstingDecay1BigRange"] = { affix = "", "Attacks have added Physical damage equal to (0-5)% of maximum Life", statOrder = { 4454 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (0-5)% of maximum Life" }, } }, + ["UniqueLoreweaveKulemak1"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4117 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, + ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6722 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9645 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9645 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9647 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9647 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6801 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10016 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10016 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10015 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10015 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10014 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10014 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10533 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10533 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10532 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10532 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10531 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10531 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10530 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10530 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10528 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10528 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveVeilpiercer1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2682 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, + ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6750 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueLoreweaveVeilpiercer3"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2377 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, + ["UniqueLoreweaveSekhemasResolveFire1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1021 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveFire1BigRange"] = { affix = "", "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1021 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveLightning1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1016 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveLightning1BigRange"] = { affix = "", "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1016 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(-15-15)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveCold1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1018 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveCold1BigRange"] = { affix = "", "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1018 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(-15-15)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, + ["UniqueLoreweaveSekhemasResolveRuby1"] = { affix = "", "You can only Socket 1 Ruby Jewel in this item", statOrder = { 75 }, level = 1, group = "LoreweaveJewelRestrictionRuby", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Ruby Jewel in this item" }, } }, + ["UniqueLoreweaveSekhemasResolveEmerald1"] = { affix = "", "You can only Socket 1 Emerald Jewel in this item", statOrder = { 75 }, level = 1, group = "LoreweaveJewelRestrictionEmerald", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Emerald Jewel in this item" }, } }, + ["UniqueLoreweaveSekhemasResolveSapphire1"] = { affix = "", "You can only Socket 1 Sapphire Jewel in this item", statOrder = { 75 }, level = 1, group = "LoreweaveJewelRestrictionSapphire", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Sapphire Jewel in this item" }, } }, + ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10501, 10501.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10501, 10501.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10501, 10501.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10500, 10501, 10501.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9198 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, + ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4652 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, + ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4652 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, + ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4652 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, + ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5896 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, + ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4167 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, + ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10357, 10357.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, + ["UniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "1% more Unarmed Damage per 5 Strength", statOrder = { 2186 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3452816629] = { "1% more Unarmed Damage per 5 Strength" }, } }, + ["UniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", statOrder = { 828 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverride", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1955786041] = { "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken" }, } }, + ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6741 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, + ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, + ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6853 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, + ["UniqueIgniteDuration1"] = { affix = "", "(60-75)% reduced Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(60-75)% reduced Ignite Duration on Enemies" }, } }, + ["UniqueIgniteEffect1"] = { affix = "", "(80-100)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(80-100)% increased Ignite Magnitude" }, } }, + ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, + ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, + ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10715 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, + ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1075 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, + ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6373 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueWitherInflictedAlsoIncreasesFireDamageTaken1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4093 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, + ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7575 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, + ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5950 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, + ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, + ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-50)% increased Damage" }, } }, + ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3929 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, + ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4698 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, + ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9320 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9613 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, + ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1591 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, + ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5750 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, + ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9904 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, + ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6486 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, + ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1553 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, + ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7584 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, + ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7585 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, + ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7583 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, + ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7626 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, + ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2242 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 100% increased Damage" }, } }, + ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3837 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "20% less Damage taken if you have not been Hit Recently" }, } }, + ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3838 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, + ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10344 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, + ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1466 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, + ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2649 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 6 seconds after being Chilled" }, } }, + ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2651 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 6 seconds after being Frozen" }, } }, + ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2652 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 6 seconds after being Ignited" }, } }, + ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2653 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 6 seconds after being Shocked" }, } }, + ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5928 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, + ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, + ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% reduced Skill Speed" }, } }, + ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(5-10)% increased Skill Speed" }, } }, + ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(15-30)% increased Skill Speed" }, } }, + ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, + ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9782 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, + ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9335 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, + ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 942, 942.1, 6081 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["UniqueOtherModifiersToRarityDoNotApply1"] = { affix = "", "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "GraveBindRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1602191394] = { "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, + ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4262 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, + ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4159 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, + ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 1122 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+10% to Block chance" }, } }, + ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 1122 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(15-25)% to Block chance" }, } }, + ["UniqueBlockPercent3"] = { affix = "", "+12% to Block chance", statOrder = { 1122 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+12% to Block chance" }, } }, + ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1969 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-10 Physical damage taken from Projectile Attacks" }, } }, + ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5633 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1631 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "20% reduced Mana Cost of Skills" }, } }, + ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1631 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "10% increased Mana Cost of Skills" }, } }, + ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4702 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10076 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, + ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(8-15)% increased Area of Effect" }, } }, + ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, + ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-30)% increased Strength" }, } }, + ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, + ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "10% reduced Dexterity" }, } }, + ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, + ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "10% reduced Intelligence" }, } }, + ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, + ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7238 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, + ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1494 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(35-50)% reduced Effect of Chill on you" }, } }, + ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9818 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, + ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10222 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, + ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7662 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, + ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7712 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, + ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9097 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, + ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7216 }, level = 1, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, + ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6909 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, + ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6762 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10359 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueMinionChanceToApplyGruelingMadness1"] = { affix = "", "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", statOrder = { 2899 }, level = 1, group = "MinionChanceToApplyGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1486714289] = { "Minions have (10-20)% chance to inflict Gruelling Madness on Hit" }, } }, + ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6343 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, + ["UniqueDeflectChanceLuckyOnLowLife1"] = { affix = "", "Chance to Deflect is Lucky while on Low Life", statOrder = { 1030 }, level = 1, group = "DeflectChanceLuckyOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1675120891] = { "Chance to Deflect is Lucky while on Low Life" }, } }, + ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5656 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, + ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5917 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, + ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9265 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, + ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9266 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, + ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8006 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, + ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7427 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, + ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10374 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, + ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7601 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, + ["UniqueElementalDamageFromHitsContributesToCoreEleAilments1"] = { affix = "", "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2624 }, level = 1, group = "ElementalDamageContributesToCoreEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2678924815] = { "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance" }, } }, + ["UniquePhysicalDamageFromHitsContributesToChillAndFreeze1"] = { affix = "", "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", statOrder = { 2639 }, level = 1, group = "PhysicalDamageFromHitsContributesToChillAndFreeze", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [905072977] = { "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup" }, } }, + ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10628 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, + ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6338 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4790 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, + ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9925 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, + ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 9998 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, + ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 951 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2061237517] = { "+(3-5) to Level of all Corrupted Spell Skill Gems" }, } }, + ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9333 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, + ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1443 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.5% of maximum Life per second per Endurance Charge" }, } }, + ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1555 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, + ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2988 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "12% increased Critical Damage Bonus per Power Charge" }, } }, + ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2317 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, + ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, + ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, + ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(10-20)% chance to Poison on Hit" }, } }, + ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, + ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 9996 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, + ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9286 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9750 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, + ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1773 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6086 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, + ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1593 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1957 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-10 Physical Damage taken from Attack Hits" }, } }, + ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1957 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, + ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1760 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4187571952] = { "Gain no inherent bonus from Intelligence" }, } }, + ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2018 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, + ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4057, 4058, 4059, 4060, 6847 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, + ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, + ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "30% slower start of Energy Shield Recharge" }, } }, + ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "100% faster start of Energy Shield Recharge" }, } }, + ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, + ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, + ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5632 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, + ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2239 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, } }, + ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9410 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, + ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3420 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1419390131] = { "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently" }, } }, + ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, + ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, + ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1436 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield" }, } }, + ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1595 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, + ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7208 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, + ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9269, 9269.1, 9269.2, 9269.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, + ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10351 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, + ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9700 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, + ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9728 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, + ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2589 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, + ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9461 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2605 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, + ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(100-200)% increased amount of Life Leeched" }, } }, + ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1157 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2423248184] = { "(30-40)% less minimum Physical Attack Damage" }, } }, + ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1156 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3735888493] = { "(30-40)% more maximum Physical Attack Damage" }, } }, + ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2333 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% reduced Attribute Requirements" }, } }, + ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2333 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% increased Attribute Requirements" }, } }, + ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2330 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4245256219] = { "Skill Gems have no Attribute Requirements" }, } }, + ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2329 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480151124] = { "Equipment has no Attribute Requirements" }, } }, + ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9387 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, + ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7355 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, + ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3276 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, + ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5545 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1470 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, + ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1583 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Hit" }, } }, + ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "50% increased Strength Requirement" }, } }, + ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10040 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, + ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 616 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2980117882] = { "This Flask cannot be Used but applies its Effect constantly" }, } }, + ["UniqueCannotDrinkFlaskManually1"] = { affix = "", "Cannot be Used manually", statOrder = { 683 }, level = 1, group = "CannotDrinkFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1237409891] = { "Cannot be Used manually" }, } }, + ["UniqueFlaskUsedOnPerfectTiming1"] = { affix = "", "Used when you release a skill with Perfect Timing", statOrder = { 704 }, level = 1, group = "FlaskUseOnPerfectTiming", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3832076641] = { "Used when you release a skill with Perfect Timing" }, } }, + ["UniquePerfectTimingWindowDuringFlaskEffect1"] = { affix = "", "Skills have (80-120)% longer Perfect Timing window during effect", statOrder = { 747 }, level = 1, group = "PerfectTimingWindowDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3982604001] = { "Skills have (80-120)% longer Perfect Timing window during effect" }, } }, + ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7812 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, + ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7814 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, + ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5474 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, + ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9113 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, + ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3134 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "minion_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, + ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7670 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, + ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7591 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, + ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4402 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, + ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7593 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, + ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, } }, + ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7802 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, + ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10614 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, + ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10602 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, + ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10520 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, + ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4723 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, + ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3906 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, + ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9334 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, + ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9173 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, + ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7589 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, + ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7587 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, + ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 923 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4287671144] = { "50% of your Base Life Regeneration is granted to Allies in your Presence" }, } }, + ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10348, 10348.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, + ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2975 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, + ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8810 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, + ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10583 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, + ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6675 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, + ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4549 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, + ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2608 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" }, } }, + ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2609 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" }, } }, + ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2610 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance" }, } }, + ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4734 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4734 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4699 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, + ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2215 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, + ["UniqueLightningDamageTakenAsCold1"] = { affix = "", "(10-20)% of Lightning damage taken as Cold damage", statOrder = { 2227 }, level = 1, group = "LightningHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198708642] = { "(10-20)% of Lightning damage taken as Cold damage" }, } }, + ["UniqueFireDamageTakenAsCold1"] = { affix = "", "(10-20)% of Fire damage taken as Cold damage", statOrder = { 2222 }, level = 1, group = "FireHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108426433] = { "(10-20)% of Fire damage taken as Cold damage" }, } }, + ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5856 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, + ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5824 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, + ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7236 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, + ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1931 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, + ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 1459 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93764325] = { "Damage cannot bypass Energy Shield" }, } }, + ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4237 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, + ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4683 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, + ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6751 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, + ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, + ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, + ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, + ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4229 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, + ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7438 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, + ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8872 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, + ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9519 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, + ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1587 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, + ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3282 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching maximum Power Charges" }, } }, + ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3283 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach maximum Power Charges" }, } }, + ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8966 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, + ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2189 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2685246061] = { "Reserves 15% of Life" }, } }, + ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2213 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "20% of Elemental damage from Hits taken as Chaos damage" }, } }, + ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3072 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, + ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1862 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "25% reduced Endurance Charge Duration" }, } }, + ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9625 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, + ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5900 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, + ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9896 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, + ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, + ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1690 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, + ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1014 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, + ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 9977 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, + ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7449 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, + ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "50% of Damage is taken from Mana before Life" }, } }, + ["UniqueDamageRemovedFromManaBeforeLife2"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, + ["UniqueDamageRemovedFromManaBeforeLife3"] = { affix = "", "100% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "100% of Damage is taken from Mana before Life" }, } }, + ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2257 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, + ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2255 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, + ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4268 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, + ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4269 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, + ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4270 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, + ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4271 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, + ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4639 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, + ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7538 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, + ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6349 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, + ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2199 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(30-50)% of Physical damage from Hits taken as Lightning damage" }, } }, + ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8799 }, 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" }, } }, + ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7413 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, + ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7430 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7412 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, + ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10358 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, + ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10356 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, + ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6869 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, + ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6869 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, + ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10394 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6782 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, + ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8839 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, + ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10712 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, + ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, + ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10608 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10608 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2790 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover 4% of maximum Life when you Block" }, } }, + ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6366 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, + ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1620 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, + ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10378 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, + ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9117, 9117.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, + ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7414 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, + ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7953 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, + ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (5-10)% of Damage as Extra Fire Damage" }, } }, + ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (5-10)% of Damage as Extra Cold Damage" }, } }, + ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (30-40)% of Damage as Extra Chaos Damage" }, } }, + ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 1289 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHashes = { [261503687] = { "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage" }, } }, + ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6322 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2760 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "300 Physical Damage taken on Minion Death" }, } }, + ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2415 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, + ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10355 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, + ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4286 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, + ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 1059 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "200% increased Stun Recovery" }, } }, + ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2456 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3811649872] = { "Increases and Reductions to Spell damage also apply to Attacks" }, } }, + ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4701 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, + ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% reduced Totem Life" }, } }, + ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1976 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, + ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2328 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, + ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5766 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, + ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-30)% increased Warcry Speed" }, } }, + ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10472 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, + ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "25% increased Totem Placement speed" }, } }, + ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3458 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1394 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-150)% to Melee Critical Damage Bonus" }, } }, + ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1964 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, + ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1958 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-30 Physical Damage taken from Hits" }, } }, + ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6851 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, + ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9580 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, + ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "30% reduced Global Armour, Evasion and Energy Shield" }, } }, + ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2842 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "unmutatable", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, + ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7466 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, + ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9082 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, + ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6065 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, + ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6712, 6712.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, + ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 4090 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, + ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, + ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, + ["UniqueGlobalCooldownRecovery2"] = { affix = "", "(20-40)% reduced Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-40)% reduced Cooldown Recovery Rate" }, } }, + ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3975 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, + ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3426 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, + ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5938 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, + ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3984 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "40% increased Mana Regeneration Rate while stationary" }, } }, + ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1434 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (10-15)% of maximum Life as Extra maximum Energy Shield" }, } }, + ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 1455 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "10% of Damage taken bypasses Energy Shield" }, } }, + ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6409 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, + ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7431 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, + ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10375, 10375.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, + ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1945 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, + ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1945 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, + ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1404 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, + ["UniqueNoCriticalStrikeMultiplier2"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1404 }, level = 1, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, + ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1383 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, + ["UniqueLocalNoCriticalStrikeMultiplier2"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1383 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, + ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6840, 6840.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, + ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, + ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7897 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, + ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10584 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, + ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 2182, 2182.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2224139044] = { "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted" }, } }, + ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6392 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, + ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 946 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "30% reduced Reload Speed" }, } }, + ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 946 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(7-14)% increased Reload Speed" }, } }, + ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5890, 5890.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, + ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10386 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, + ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3464 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, + ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3781 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, + ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7540 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "-15 Strength Requirement" }, } }, + ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, + ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, + ["UniqueStrengthRequirements4"] = { affix = "", "+25 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+25 Strength Requirement" }, } }, + ["UniqueStrengthRequirements5"] = { affix = "", "+150 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, + ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 817 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+50 Dexterity Requirement" }, } }, + ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 819 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+100 Intelligence Requirement" }, } }, + ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 819 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, + ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5643 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7664 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, + ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7667 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, + ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7666 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, + ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 72 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4031148736] = { "You can only Socket Ruby Jewels in this item" }, } }, + ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 73 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3598729471] = { "You can only Socket Emerald Jewels in this item" }, } }, + ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 74 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [21302430] = { "You can only Socket Sapphire Jewels in this item" }, } }, + ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6564 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, + ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5690 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, + ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7537 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, + ["UniqueColdAndLightningResPerFireResItem1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1021 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, + ["UniqueFireAndColdResPerLightningResItem1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1016 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, + ["UniqueFireAndLightningRestPerColdResItem1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1018 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, + ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7665 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, + ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7663 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, + ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6555 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6186 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, + ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6189 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, + ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 4088, 4089 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350232544] = { "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently" }, [57896763] = { "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently" }, } }, + ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6483 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, + ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3142 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1094937621] = { "Critical Hits ignore Enemy Monster Elemental Resistances" }, } }, + ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9686 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1430 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield" }, } }, + ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5505 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, + ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 14 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, + ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of Charges consumed by used Charms are granted to your Life Flasks", statOrder = { 902 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2369960685] = { "50% of Charges consumed by used Charms are granted to your Life Flasks" }, } }, + ["UniqueLifeFlaskChargesToCharms1"] = { affix = "", "50% of Charges consumed by used Life Flasks are granted to your Charms", statOrder = { 903 }, level = 70, group = "LifeFlaskChargesToCharms", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2020463573] = { "50% of Charges consumed by used Life Flasks are granted to your Charms" }, } }, + ["UniqueCorruptedSkillCostEfficiencyDuringFlaskEffect1"] = { affix = "", "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", statOrder = { 3004 }, level = 70, group = "CorruptedSkillCostEfficiencyDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638381947] = { "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect" }, } }, + ["UniqueCorruptedCharmDuration1"] = { affix = "", "(25-50)% increased Corrupted Charms effect duration", statOrder = { 900 }, level = 70, group = "CorruptedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1571268546] = { "(25-50)% increased Corrupted Charms effect duration" }, } }, + ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 178 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065505214] = { "(66-333)% increased effect of Socketed Soul Cores" }, } }, + ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9568 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6686 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, + ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7906 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4687 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, + ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7454 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, + ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9637 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, + ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4703 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, + ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7323 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, + ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7319 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, + ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4272 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, + ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5682 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, + ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7325 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, + ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6344 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, + ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6337 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10588 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, + ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10589 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, + ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10353 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, + ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5548 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, + ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1472 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, + ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1910 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, + ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7767 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, + ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7766 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, + ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7796 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, + ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7797 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, + ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9525 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7813 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, + ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6942, 6942.1, 6942.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, + ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4651 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, + ["UniqueLocalRunicWard1"] = { affix = "", "+(50-100) to maximum Runic Ward", statOrder = { 844 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(50-100) to maximum Runic Ward" }, } }, + ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5621 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, + ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4232 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, + ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, + ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9192 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, + ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7806 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, + ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7778 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, + ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7780 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, + ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7682 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, + ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7720 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, + ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7794 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, + ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7582 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, + ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7607 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, + ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7608 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, + ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7605 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, + ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7580 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, + ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7808 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, + ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7606 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, + ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7609 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, + ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7774, 7774.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, + ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7555 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, + ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5892 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10354 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, + ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5945 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, + ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6187 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, + ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10377 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, + ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4275 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, + ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 921 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, + ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6342 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, + ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6339 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, + ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 3073 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2415497478] = { "(10-30)% chance to Avoid Physical Damage from Hits" }, } }, + ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 3078 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1563503803] = { "(10-30)% chance to Avoid Chaos Damage from Hits" }, } }, + ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 3075 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(10-30)% chance to Avoid Fire Damage from Hits" }, } }, + ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 3076 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(10-30)% chance to Avoid Cold Damage from Hits" }, } }, + ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 3077 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(10-30)% chance to Avoid Lightning Damage from Hits" }, } }, + ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9383 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, + ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7817 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, + ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7816 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, + ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7818 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, + ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 638, 931 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, + ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10279 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, + ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6448 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, + ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6446 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, + ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6447 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, + ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6346 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, + ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5885 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, + ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2723 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 75% Cold Resistance" }, } }, + ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4913 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, + ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4409 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, + ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6476 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, + ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6408 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, + ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4253 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, + ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2620 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Chaos Damage from Hits also Contributes to Freeze Buildup" }, } }, + ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4662 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, + ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8938 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, + ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2322 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, + ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9047 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, + ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2236 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, + ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4795 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueFireDamageAlsoContributesToBleed1"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2631 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, + ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6328 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6330 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1942 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, + ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9275 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, + ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(17-23)% to Chaos Resistance" }, } }, + ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2336 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, + ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4254 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, + ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4254 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, + ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10383 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, + ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6384 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8813 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, + ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6197 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, + ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8864 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, + ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10384, 10384.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, + ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10525, 10526 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, + ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10524 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, + ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { affix = "", "(3-5)% increased Attack damage per Power of target", statOrder = { 4503 }, level = 1, group = "IncreasedAttackDamagePerTargetPower", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [954571961] = { "(3-5)% increased Attack damage per Power of target" }, } }, + ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7407 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, + ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 2212 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [2340750293] = { "(20-30)% of Elemental damage from Hits taken as Physical damage" }, } }, + ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4930 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, + ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2362 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, + ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5241 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, + ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2414 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, + ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6872 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4278 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6350 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10350 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, + ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6341 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, + ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10381 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, + ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6347 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, + ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, + ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7941 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, + ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4224, 4224.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, + ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4414 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, + ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6098 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, + ["UniqueMaxLifeToConvertToArmourPerChaosResistance1"] = { affix = "", "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", statOrder = { 1433 }, level = 1, group = "UniqueMaxLifeToConvertToArmourPerChaosResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4274637468] = { "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%" }, } }, + ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10352 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, + ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9879 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, + ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4679 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5291 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, + ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7248 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, + ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10186 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, + ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9172 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7989 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, + ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6080 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, + ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10224 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7447 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, + ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6842 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, + ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7907 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, + ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9193 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, + ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 1008, 1009, 1010 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [4095671657] = { "+3% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1480 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [2593644209] = { "-10% to all Elemental Resistances per Power Charge" }, } }, + ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+1 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+3 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, + ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+1 to Level of all Fire Skills", "+3 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+1 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, + ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+2 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+3 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+3 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, + ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+2 to Level of all Fire Skills", "+3 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, + ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+3 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, + ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+3 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 957, 959, 961 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, + ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4311 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, + ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9731, 9731.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 3 seconds" }, } }, + ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3263 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, + ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4429 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, + ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2621 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, + ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1777 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, + ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1136 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, + ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1414 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3739186583] = { "Knocks Back Enemies on Hit" }, } }, + ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9999 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 4091 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1354656031] = { "Withered you inflict has infinite Duration" }, } }, + ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7681 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, + ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6946 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, + ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6947 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, + ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6945 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, + ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6944 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, + ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4624 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, + ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4629 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, + ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-20)% chance to cause Bleeding on Hit" }, } }, + ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, + ["UniqueLocalChanceToBleed3"] = { affix = "", "(20-30)% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(20-30)% chance to cause Bleeding on Hit" }, } }, + ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5309 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, + ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4258 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, + ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9434 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, + ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 9988, 9988.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, + ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5261 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, + ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5262 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, + ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4712 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, + ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4572 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, + ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9175 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, + ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10591 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, + ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10621 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, + ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2313 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, + ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5716 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, + ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4697 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, + ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 9975 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, + ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9955 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, + ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% increased Life Regeneration rate" }, } }, + ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(-30-30)% reduced Life Regeneration rate" }, } }, + ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10379 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, + ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5227 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, + ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9072 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, + ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6202 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, + ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5757 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2377 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, + ["UniqueIgnoreHexproof2"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2377 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, + ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6414 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, + ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4562 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, + ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9178 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, + ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6391 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, + ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4924 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, + ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5919 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, + ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9339 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, + ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9349 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, + ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9347 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, + ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, + ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9338 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, + ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4313 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, + ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9343 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, + ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7200 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, + ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7199 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, + ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7201 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, + ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10516 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4055, 4055.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, + ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1756 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, + ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1757 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, + ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1758 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10349, 10349.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5751 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, + ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5807 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, + ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5809 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, + ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5299 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, + ["UniqueRegeneratePercentLifeIfHitRecently1"] = { affix = "", "Regenerate 5% of maximum Life per second if you have been Hit Recently", statOrder = { 1034 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 5% of maximum Life per second if you have been Hit Recently" }, } }, + ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6796 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, + ["UniqueLifeRecoveryRate1"] = { affix = "", "(25-50)% increased Life Recovery rate", statOrder = { 1444 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(25-50)% increased Life Recovery rate" }, } }, + ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1444 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, + ["UniqueLifeRecoveryRate3"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1444 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, + ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7437 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, + ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6696 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, + ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4491 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, + ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9764 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, + ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9926 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, + ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1355 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, + ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7586 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, + ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9785 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, + ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5236 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, + ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4238 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, + ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7579 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, + ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7612 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2247 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, + ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2497 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, + ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7595 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, + ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, + ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, + ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7314 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, + ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7789 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, + ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1918 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, + ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1919 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, + ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3440 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (10-12) additional Attack Physical Damage" }, } }, + ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 613 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, + ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 613 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, + ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9242 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, + ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10624 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, + ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5905 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, + ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4920 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, + ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, + ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7239 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, + ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7168 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, + ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6697, 6697.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, + ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7631 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, + ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6283 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, + ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2750 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4004 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, + ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4003 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, + ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5301 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, + ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1688 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, + ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1688 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, + ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1688 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, + ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7705 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, + ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4729 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9171 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4453 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, + ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4454 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, + ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1981 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, + ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1981 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, + ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1981 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, + ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1981 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, + ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 2007 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3507701584] = { "+4 to Level of Vulnerability Skills" }, } }, + ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1980 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2157870819] = { "+4 to Level of Despair Skills" }, } }, + ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1982 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3948285912] = { "+4 to Level of Enfeeble Skills" }, } }, + ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 2006 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1042153418] = { "+4 to Level of Temporal Chains Skills" }, } }, + ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5604 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, + ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5603 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, + ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5602 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, + ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5594 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, + ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5601 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, + ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5600 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, + ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5593 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, + ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5616 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, + ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5617 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, + ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5605 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, + ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5599 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, + ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5618 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, + ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5612 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, + ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5609 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, + ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5613 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, + ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5611 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, + ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5606 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, + ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5607 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, + ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5610 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, + ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5615 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, + ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5614 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, + ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5608 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, + ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3814 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, + ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3813 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10022 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, + ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9235 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, + ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9236 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1711 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, + ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1714 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, + ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1712 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, + ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9233 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, + ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9232 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, + ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9234 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, + ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9231 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10675 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10669 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10643 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, + ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10683 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10655 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10662 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, + ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10682 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10668 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, + ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10670 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10660 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10630 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, + ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10686 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, + ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10429 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10430 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10428 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10432 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10431 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10427 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 16 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Instilled Modifiers" }, } }, + ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9227 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, + ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9225 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, + ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9229 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, + ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1655 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, + ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7485 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, + ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9722 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, + ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "30% increased Chill Duration on Enemies" }, } }, + ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, + ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, + ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueBlockChanceFromArmourOnEquipment1"] = { affix = "", "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", statOrder = { 1133 }, level = 1, group = "UniqueBlockChancePerBaseArmour", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2531622767] = { "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items" }, } }, + ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { affix = "", "Arrows Return if they have Pierced a target which had Fully Broken Armour", statOrder = { 4427 }, level = 1, group = "UniqueProjectilesReturnIfPiercedArmourBroken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243721142] = { "Arrows Return if they have Pierced a target which had Fully Broken Armour" }, } }, + ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, + ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9332 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, + ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9898 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, + ["UniqueFireColdResistance1"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 1015 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, + ["UniqueFireLightningResistance1"] = { affix = "", "+(10-20)% to Fire and Lightning Resistances", statOrder = { 1017 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-20)% to Fire and Lightning Resistances" }, } }, + ["UniqueColdLightningResistance1"] = { affix = "", "+(10-20)% to Cold and Lightning Resistances", statOrder = { 1020 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-20)% to Cold and Lightning Resistances" }, } }, + ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7463 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, + ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6383 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, + ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5794 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, + ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5940 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, + ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10501, 10501.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10501, 10501.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10501, 10501.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10500, 10501, 10501.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueCannotInflictElementalAilments1"] = { affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1616 }, level = 1, group = "CannotApplyElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [4056809290] = { "Cannot inflict Elemental Ailments" }, } }, + ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10632 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, + ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "25% increased Rarity of Items found" }, } }, + ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% increased Skill Speed" }, } }, + ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, + ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, + ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3981240776] = { "+500 to Spirit" }, } }, + ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, + ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, + ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 990 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, + ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, + ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "2 Life Regeneration per second" }, } }, + ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, + ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, + ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, + ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1790 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, + ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1790 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, + ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1790 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, + ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1915 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Hits" }, } }, + ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1912 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, + ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1912 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, + ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1907 }, 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 = { 1907 }, 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 = { 1907 }, 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 = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "100% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "30% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1700 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 1048 }, 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 = { 1048 }, 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 = { 901 }, 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 = { 901 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, + ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 901 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(30-40)% reduced Flask Effect Duration" }, } }, + ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 901 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 901 }, 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 = { 901 }, 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 = { 1792 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, + ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "10% increased Life Recovery from Flasks" }, } }, + ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1792 }, 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 = { 1792 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, + ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1793 }, 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 = { 1793 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, + ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1793 }, 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 = { 1793 }, 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 = { 897 }, 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 = { 897 }, 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 = { 897 }, 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 = { 898 }, 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 = { 898 }, 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 = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, + ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1610 }, 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 = { 1610 }, 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 = { 1610 }, 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 = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10634 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, + ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 54 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, + ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1595 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, + ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 904 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1933 }, 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 = { 904 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1928 }, 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 = { 1957 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10675 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1470 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, + ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1470 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, + ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1470 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, + ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1470 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, + ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1598 }, 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 = { 1598 }, 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 = { 1590 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, + ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1590 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, + ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1598 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, + ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1591 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, + ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1591 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, + ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1634 }, 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 = { 1482 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "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 = { 1421 }, 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 maximum Life per second while on Low Life", statOrder = { 1690 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of maximum Life per second while on Low Life" }, } }, + ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1690 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of maximum Life per second while on Low Life" }, } }, + ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1690 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, + ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1466 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1552 }, 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 = { 1552 }, 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 = { 1552 }, 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 = { 1552 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1552 }, 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 = { 1552 }, 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 = { 1552 }, 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 = { 1553 }, 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 = { 1553 }, 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 = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1724 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, + ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1703 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "100% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1673 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, + ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1703 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1703 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1703 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "50% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1703 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1576601839] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1705 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, + ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1177 }, 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 = { 1177 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10648 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 1957 }, 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 = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, + ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 837 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, + ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, + ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to Maximum Cold Resistance" }, } }, + ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, + ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to Maximum Fire Resistance" }, } }, + ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to Maximum Lightning Resistance" }, } }, + ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1933 }, 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 = { 1969 }, 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 = { 1969 }, 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 Hit", statOrder = { 1581 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Hit" }, } }, + ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2975 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, + ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1492 }, 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 = { 1492 }, 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 = { 1492 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, + ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to Maximum Cold Resistance" }, } }, + ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 329 }, 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 = { 329 }, 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 = { 329 }, 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 = { 329 }, 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 = { 340 }, 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 = { 337 }, 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 = { 338 }, 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 = { 338 }, 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 = { 338 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, + ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", statOrder = { 2008 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead" }, } }, + ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1588 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Hit" }, } }, + ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2011 }, 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 = { 345 }, 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 = { 345 }, 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 = { 345 }, 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 = { 345 }, 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 = { 1064 }, 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 = { 1064 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 257 }, 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 = { 181 }, 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 = { 181 }, 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 = { 287 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10713 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, + ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 62 }, 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 = { 1128 }, 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 = { 1128 }, 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 = { 1128 }, 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 = { 1128 }, 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 = { 1128 }, 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 = { 1128 }, 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 = { 1476, 1477 }, 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 Spectres", "+1 to maximum number of Skeletons", statOrder = { 1898, 9300 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1898, 1899 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1898 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9300 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1899 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1898 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9845, 9846, 9849 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1898 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1898 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9849 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9845 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9846 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, + ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 388 }, 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 = { 388 }, 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 = { 388 }, 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 = { 140 }, 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 = { 394 }, 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 = { 1931 }, 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 = { 1931 }, 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 = { 1708 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1708 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1708 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1708 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9241 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1898, 9300 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1898, 1899 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 118 }, 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 cause double loss of Energy Shield", statOrder = { 2288 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, + ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2210 }, 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 = { 2192 }, 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 = { 2193 }, 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 = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, + ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, + ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteDuration", 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 = { 2195 }, 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 = { 2195 }, 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 = { 1934 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, } }, + ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1593 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1593 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1738 }, 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 = { 1738 }, 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 = { 2239 }, 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% to Block chance", statOrder = { 1122 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% to Block chance" }, } }, + ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 1122 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+25% to Block chance" }, } }, + ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 1122 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-4)% to Block chance" }, } }, + ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 1122 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+15% to Block chance" }, } }, + ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4640 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, + ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1548 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1548 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5757 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, + ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, + ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2244 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, + ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 389 }, 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 = { 389 }, 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 = { 389 }, 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 = { 389 }, 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 = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-10)% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "2% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, + ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2242 }, 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 = { 2242 }, 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 = { 820 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, + ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, + ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 819 }, 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 = { 334 }, 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 = { 334 }, 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 = { 334 }, 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 = { 334 }, 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 = { 2247 }, 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 = { 2248 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, + ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1536 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, + ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1536 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(10-20)% reduced Skeleton Duration" }, } }, + ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, + ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, + ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, + ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, + ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 827 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, + ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 826 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, + ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 819 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, + ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 819 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, + ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 817 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, + ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 825 }, 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 = { 2250 }, 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 = { 1422 }, 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 = { 1422 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, + ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2255 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, + ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 664 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2261 }, 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 = { 2262 }, 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 = { 2260 }, 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 = { 2262 }, 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 = { 2260 }, 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 = { 2262 }, 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 = { 2260 }, 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 = { 2262 }, 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 = { 2260 }, 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 = { 2262 }, 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 Hit", statOrder = { 7610 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7613 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2258 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, + ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2274 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, + ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1913 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, + ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3249 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1882 }, 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 Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3249 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3249 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1882 }, 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 = { 1772 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, + ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1772 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, + ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1772 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, + ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1772 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, + ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1772 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, + ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1149 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, + ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, + ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1150 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, + ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1150 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, + ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, + ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1150 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, + ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, + ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, + ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, + ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1069 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, + ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, + ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, + ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, + ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, + ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, + ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__1"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, + ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, + ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, + ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, + ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2299 }, 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 Hit", statOrder = { 2289 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6926 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, + ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2310 }, 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 = { 2313 }, 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 = { 2316 }, 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 = { 1955 }, 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 = { 1951 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, 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 = { 1951 }, 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 = { 1956 }, 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 = { 1953 }, 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 = { 1956 }, 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 = { 1953 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1956 }, 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 = { 1953 }, 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 = { 1955 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(10-20)% increased Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, 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 = { 1014 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "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 = { 1601 }, 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 = { 341 }, 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 = { 341 }, 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 = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, + ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1643 }, 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 = { 1643 }, 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 = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, + ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1643 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1643 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-13-13)% reduced Skill Effect Duration" }, } }, + ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "4% increased Skill Effect Duration" }, } }, + ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 142 }, 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 = { 1555 }, 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 = { 1555 }, 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 = { 1555 }, 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 = { 1555 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1425 }, 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 = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, 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 = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1562 }, 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 = { 1562 }, 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 = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10492 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, + ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4563 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, + ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4484 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1864 }, 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 = { 1864 }, 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 = { 1976 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, + ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1531 }, 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 = { 1531 }, 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 = { 1531 }, 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 = { 339 }, 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 = { 336 }, 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 Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2328 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, + ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 342 }, 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 = { 342 }, 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 = { 7509 }, 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 = { 7509 }, 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", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration" }, } }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7509 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, + ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1964 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, + ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1964 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, + ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1964 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, + ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, + ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2297 }, 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 Damage Bonus", statOrder = { 1394 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Damage Bonus" }, } }, + ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1472 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, + ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2333 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% reduced Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2333 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 10% increased Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2333 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 100% reduced Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2333 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 50% increased Attribute Requirements" }, } }, + ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1909 }, 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 = { 1909 }, 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 = { 1909 }, 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 = { 1909 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced effect of Curses on you" }, } }, + ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1505 }, 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 = { 1506 }, 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 = { 1506 }, 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 = { 1506 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, + ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 364 }, 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 = { 364 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, + ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, } }, + ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2335 }, 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 = { 1024 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, + ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2334 }, 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 = { 344 }, 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 = { 344 }, 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 = { 344 }, 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 = { 344 }, 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 = { 343 }, 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 = { 1861 }, 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 = { 1861 }, 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 = { 2336 }, 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 = { 6382 }, 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 = { 6382 }, 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 = { 6328 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, + ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2338 }, 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 = { 2337 }, 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 = { 1936 }, 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 = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1567 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+(-1-1) to Maximum Power Charges" }, } }, + ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, + ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, + ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1879 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, + ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1879 }, 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 = { 1879 }, 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 = { 1877 }, 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 = { 1877 }, 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 = { 1877 }, 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 = { 2353 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [573884683] = { "100% chance to create Consecrated Ground when you Block" }, } }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2354 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, } }, + ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2362 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, + ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 167 }, 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 = { 167 }, 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 = { 2351 }, 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 = { 2351 }, 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 killed", statOrder = { 2351 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-25) Energy Shield per enemy killed" }, } }, + ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2363 }, 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 = { 5650 }, 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 = { 2364 }, 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 = { 1176 }, 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 = { 1176 }, 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 = { 1176 }, 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 = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, + ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2509 }, 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 = { 2326 }, 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 = { 2327 }, 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 = { 2446 }, 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 = { 2454 }, 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 = { 2454 }, 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 = { 994 }, 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 = { 995 }, 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 = { 996 }, 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 = { 994 }, 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 = { 2312 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2312 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+10 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2505 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1862 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, + ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1862 }, 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 = { 2403 }, 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 = { 2403 }, 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 = { 2403 }, 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 = { 2403 }, 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 = { 2403 }, 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 = { 2403 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2405 }, 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 = { 2401 }, 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 = { 2408 }, 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 = { 2370 }, 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 = { 2410 }, 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 Hit", statOrder = { 2411 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Hit" }, } }, + ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2412 }, 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 = { 2413 }, 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 = { 2420 }, 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 maximum Energy Shield per second", statOrder = { 2421 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of maximum Energy Shield per second" }, } }, + ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2431 }, 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 = { 2424 }, 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 maximum Energy Shield per second", statOrder = { 2418 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, + ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2418 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of maximum Energy Shield per second" }, } }, + ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2418 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 2% of maximum Energy Shield per second" }, } }, + ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2417 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, + ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2414 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, + ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2415 }, 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 = { 2415 }, 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 = { 1781 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, + ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2400 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of maximum Life per second per Frenzy Charge" }, } }, + ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2565 }, 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 = { 1593 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2399 }, 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 = { 1124 }, 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 = { 2365 }, 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 = { 2365 }, 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 = { 2365 }, 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 = { 2365 }, 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 = { 2365 }, 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 = { 1517 }, 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 = { 1518 }, 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 = { 1518 }, 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 = { 2368 }, 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 = { 10610 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 = { 2369 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "minion_resistance", "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, + ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2449 }, 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 = { 2451 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_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 = { 2367 }, 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 = { 2371 }, 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 = { 2373 }, 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 = { 1713 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [268659529] = { "40% of Cold Damage Converted to Fire Damage" }, } }, + ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited enemies killed by your Hits are destroyed", statOrder = { 2372 }, 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 Hit", statOrder = { 2448 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Hit" }, } }, + ["NoBonusesFromCriticalStrikes"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1404 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, + ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 784 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1740200922] = { "(20-30)% increased Rarity of Items found during Effect" }, } }, + ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 783 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3736953565] = { "(8-12)% increased Quantity of Items found during Effect" }, } }, + ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 786 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2745936267] = { "25% increased Light Radius during Effect" }, } }, + ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 773 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "flask", "elemental", "resistance" }, tradeHashes = { [4026156644] = { "+4% to all maximum Elemental Resistances during Effect" }, } }, + ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 789 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "flask", "elemental", "resistance" }, tradeHashes = { [3110554274] = { "+50% to Elemental Resistances during Effect" }, } }, + ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2457 }, 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" }, } }, + ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1716 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, + ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1716 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [147385515] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, + ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2445 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, + ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2635 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, + ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2635 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Physical Damage from Hits also Contributes to Chill Magnitude" }, } }, + ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2465 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 2467 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, + ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1290 }, 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 = { 1290 }, 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 = { 1290 }, 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 = { 1290 }, 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 = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos damage" }, } }, + ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1692 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "450 Chaos Damage taken per second" }, } }, + ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1692 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "250 Chaos Damage taken per second" }, } }, + ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1692 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, + ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1692 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, + ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2469 }, 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 = { 2464 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10709 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2463 }, 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 = { 2463 }, 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 = { 10709 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10716 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10709 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, + ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, + ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2344 }, 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 = { 2348 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2348 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2350 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, + ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, + ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, + ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1186 }, 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 = { 1186 }, 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 = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, + ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "50% increased Damage" }, } }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10669 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2471 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, + ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1270 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (75-100) to (165-200) Fire Damage in Main Hand" }, } }, + ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1270 }, 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 (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1291 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (75-100) to (165-200) Chaos Damage in Off Hand" }, } }, + ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1276 }, 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 = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2621 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, + ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2621 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, + ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1712 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, + ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1712 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10389 }, 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 = { 7706 }, 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 = { 7706 }, 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 = { 2475 }, 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 = { 360 }, 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 = { 365 }, 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 = { 365 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, + ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 641 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "energy_shield" }, tradeHashes = { [2917449574] = { "Removes 80% of your maximum Energy Shield on use" }, } }, + ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 642 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "damage", "chaos" }, tradeHashes = { [2301696196] = { "You take 50% of your maximum Life as Chaos Damage on use" }, } }, + ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 654 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [3230795453] = { "Gain (1-3) Frenzy Charge on use" }, } }, + ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 655 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHashes = { [2697049014] = { "Gain (1-3) Power Charge on use" }, } }, + ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 653 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, + ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 653 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, + ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2482 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1072 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(250-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1072 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(70-100)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, + ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2480 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2422197812] = { "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage" }, } }, + ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2481 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1357244124] = { "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage" }, } }, + ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2722 }, 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 = { 2515 }, 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 = { 2470 }, 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 = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, + ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, + ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, + ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, + ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, + ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 1057 }, 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 = { 1057 }, 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 = { 1057 }, 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 = { 2598 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2599 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, + ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2600 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, + ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2600 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, + ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2602 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, + ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, + ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, + ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, + ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, + ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, + ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2498 }, 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 = { 1501 }, 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 = { 1501 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, + ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1501 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 4 Life per Enemy Hit with Spells" }, } }, + ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1501 }, 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 = { 2490 }, 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 = { 2488 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2493 }, 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 = { 2493 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, + ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2508 }, 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 = { 2585 }, 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 maximum Energy Shield when you Block", statOrder = { 2500 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your maximum Energy Shield when you Block" }, } }, + ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1675 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (40-60)% of Physical Damage as extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1675 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [459352300] = { "Gain (30-40)% of Physical Damage as extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1685 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2105236138] = { "Gain (6-10)% of Fire Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1682 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [1036710490] = { "Gain (6-10)% of Cold Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1679 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [502598927] = { "Gain (6-10)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2199 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical damage from Hits taken as Lightning damage" }, } }, + ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2526 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, + ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1665 }, 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 = { 1665 }, 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 = { 2530 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2530 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "15% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 330 }, 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 = { 330 }, 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 = { 330 }, 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 = { 1660 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, + ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1660 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "10% reduced Trap Duration" }, } }, + ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, + ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, + ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(15-25)% increased Trap Damage" }, } }, + ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2584 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, + ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2574 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, + ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3132 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, + ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1965 }, 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 = { 1960 }, 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 = { 2591 }, 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 = { 2590 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, + ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2593 }, 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 = { 5920 }, 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 = { 5920 }, 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 = { 5920 }, 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 = { 143 }, 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 = { 143 }, 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 = { 143 }, 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 = { 143 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, + ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1910 }, 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 = { 1910 }, 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 = { 3006 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2589 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, + ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1331 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1331 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Accuracy Rating" }, } }, + ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 398 }, 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 = { 147 }, 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 = { 150 }, 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 = { 147 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, + ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2317 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, + ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4424 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4423 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, + ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2667 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, + ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 148 }, 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 = { 148 }, 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 = { 148 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, + ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1546 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, + ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1546 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, + ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1546 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, + ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2682 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, + ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1191 }, 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 = { 1189 }, 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 = { 1187 }, 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 = { 2474 }, 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 = { 2473 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, + ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 354 }, 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 = { 354 }, 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 = { 355 }, 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 = { 2213 }, 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 = { 2501 }, 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 = { 2673 }, 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 = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, + ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2678 }, 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 = { 2679 }, 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 = { 2680 }, 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 = { 1409 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10682 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1031 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, + ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 643 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of maximum Life on use" }, } }, + ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 644 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, + ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2684 }, 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 = { 460 }, 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 = { 2685 }, 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 Hit Chance per 8 Strength", statOrder = { 2686 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Hit Chance per 8 Strength" }, } }, + ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2687 }, 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 = { 2687 }, 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 = { 2688 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, + ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2688 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, + ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2692 }, 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 = { 2692 }, 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 Hit", statOrder = { 7786 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, + ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2531 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Hits Poison the Enemy" }, } }, + ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 774 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(8-12)% Chance to Block Attack Damage during Effect" }, } }, + ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 774 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, + ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2690 }, 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 against Ignited Enemies", statOrder = { 7164 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, + ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2712 }, 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 = { 2703 }, 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 = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-20)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 875 }, 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 = { 875 }, 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 = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-100)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 875 }, 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 = { 875 }, 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 = { 875 }, 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 = { 875 }, 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 = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1894 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 100% faster" }, } }, + ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1892 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [2460686383] = { "Leech 30% faster" }, } }, + ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1894 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 50% faster" }, } }, + ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1894 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (10-20)% slower" }, } }, + ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1894 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life (500-1000)% faster" }, } }, + ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1896 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3554867738] = { "Leech Mana (500-1000)% faster" }, } }, + ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1307 }, 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 = { 1307 }, 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 = { 1307 }, 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 maximum Life on Rampage", statOrder = { 2697 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of maximum Life on Rampage" }, } }, + ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2698 }, 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 = { 2699 }, 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 = { 6720 }, 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 = { 2710 }, 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 = { 2711 }, 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 = { 2701 }, 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 = { 2704 }, 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 Hit Chance per Level", statOrder = { 2705 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Hit Chance per Level" }, } }, + ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2706 }, 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 = { 2707 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, + ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2708 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2713 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10623 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10623 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10623 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10622, 10622.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10623 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10623 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2717 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2717 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2715 }, 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 = { 2716 }, 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 = { 149 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, + ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2718 }, 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 = { 2719 }, 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 = { 2714 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 442 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, + ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 444 }, 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 = { 10327 }, 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 = { 1484 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "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 = { 1490 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "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 = { 1487 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "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 = { 2724 }, 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 = { 2724 }, 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 = { 2722 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 395 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7175 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7175 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, + ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2356 }, 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 = { 2517 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, + ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1965 }, 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 = { 2216 }, 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 = { 2215 }, 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 = { 1211 }, 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 = { 546, 546.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 1% increased Damage per 5 Dexterity", statOrder = { 1721 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 1% increased Damage per 5 Dexterity" }, } }, + ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on killing a Shocked enemy", statOrder = { 545 }, 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 = { 2748 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, + ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2747 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, + ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2727 }, 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 = { 2727 }, 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 = { 1876 }, 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 = { 1876 }, 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 that are on Full Life", statOrder = { 2731 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life" }, } }, + ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2732 }, 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 = { 2730 }, 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 = { 2759 }, 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 = { 1615 }, 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 = { 1615 }, 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 = { 1615 }, 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 = { 2754 }, 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 = { 1612 }, 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 = { 1610, 1612 }, 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 = "", "25% increased Freeze Duration on Enemies", statOrder = { 1612 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, + ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2721 }, 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 = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6345 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, + ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1701 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, + ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 4105 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, + ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, + ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (6-8)% increased Area of Effect" }, } }, + ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2760 }, 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 = { 2756 }, 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 = { 2548 }, 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 = { 2549 }, 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 = { 4571 }, 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 12 Steel Shards", statOrder = { 9880, 9880.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, + ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2346 }, 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 = { 447 }, 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 = { 448 }, 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 = { 445 }, 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 = { 445 }, 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 = { 446 }, 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 = { 449 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, + ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 360 }, 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 = { 361 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, + ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3249 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, + ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3249 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "3% increased Magnitudes of Non-Curse Auras from your Skills" }, } }, + ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1947 }, 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 = { 1947 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, + ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1875 }, 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 = { 2764 }, 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 = { 2761 }, 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 = { 830 }, 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 = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-80)% increased Physical Damage" }, } }, + ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 2% of Physical Damage as Life" }, } }, + ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2763 }, 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 maximum Life per second", statOrder = { 1689 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10543 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, + ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, + ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, + ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1666 }, 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 = { 1666 }, 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 = { 8914 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, + ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1154 }, 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 = { 363 }, 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 = { 5678 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, + ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2187 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits" }, } }, + ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2187 }, 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 = { 2188 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 2352 }, 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 = { 2352 }, 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 = { 2744 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, + ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2745 }, 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 maximum Life Regenerated per second", statOrder = { 2734 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of maximum Life Regenerated per second" }, } }, + ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2739 }, 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 = { 2468 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, + ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3446 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, + ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2751 }, 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 = { 2753 }, 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 = { 1881 }, 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 = { 1881 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased effect of Buffs on you" }, } }, + ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2750 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 367 }, 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 = { 2743 }, 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 = { 2743 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, + ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 662 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1457911472] = { "75% chance to cause Enemies to Flee on use" }, } }, + ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 796 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3636096208] = { "(7-10)% more Melee Physical Damage during effect" }, } }, + ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 723 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, + ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2259 }, 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 = { 1503 }, 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 = { 1503 }, 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 = { 1503 }, 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 = { 1040, 1506 }, 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 = { 1040, 1506 }, 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 = { 1040, 1506 }, 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" }, } }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 495 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, } }, + ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2528 }, 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 = { 2529 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, + ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "10% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9522 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10670 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 478 }, 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 = { 374 }, 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 = { 7465 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, + ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces" }, } }, + ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, + ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, + ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(14-16)% increased Damage with Bows" }, } }, + ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1240 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1069260037] = { "(14-16)% increased Damage with Claws" }, } }, + ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(14-16)% increased Damage with Daggers" }, } }, + ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2689 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [379328644] = { "(14-16)% increased Damage with Wands" }, } }, + ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(14-16)% increased Damage with Quarterstaves" }, } }, + ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3039 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1010549321] = { "(12-14)% increased Damage with One Handed Weapons" }, } }, + ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3040 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1836374041] = { "(12-14)% increased Damage with Two Handed Weapons" }, } }, + ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1216 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [444174528] = { "(12-14)% increased Attack Damage while Dual Wielding" }, } }, + ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1231 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [515842015] = { "(14-16)% increased Melee Physical Damage with Unarmed Attacks" }, } }, + ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, + ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, + ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "10% increased Projectile Damage" }, } }, + ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-12)% increased Spell Damage" }, } }, + ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1180 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 1, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(14-16)% increased Spell Damage while wielding a Staff" }, } }, + ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1183 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(14-16)% increased Spell Damage while Dual Wielding" }, } }, + ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1182 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(14-16)% increased Spell Damage while holding a Shield" }, } }, + ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(14-16)% increased Trap Damage" }, } }, + ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1153 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(14-16)% increased Mine Damage" }, } }, + ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1149 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-10)% increased Damage" }, } }, + ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, + ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(14-16)% increased Fire Damage" }, } }, + ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(14-16)% increased Cold Damage" }, } }, + ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(14-16)% increased Lightning Damage" }, } }, + ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(14-16)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1166 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(10-12)% increased Damage over Time" }, } }, + ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1166 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, + ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-13)% increased Chaos Damage" }, } }, + ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1772 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, + ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1322 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(6-8)% increased Attack Speed with Maces or Sceptres" }, } }, + ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(6-8)% increased Attack Speed with Axes" }, } }, + ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(6-8)% increased Attack Speed with Swords" }, } }, + ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(6-8)% increased Attack Speed with Bows" }, } }, + ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1320 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(6-8)% increased Attack Speed with Claws" }, } }, + ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(6-8)% increased Attack Speed with Daggers" }, } }, + ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1325 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(6-8)% increased Attack Speed with Wands" }, } }, + ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(6-8)% increased Attack Speed with Quarterstaves" }, } }, + ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1317 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1813451228] = { "(4-6)% increased Attack Speed with One Handed Melee Weapons" }, } }, + ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1316 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917910910] = { "(4-6)% increased Attack Speed with Two Handed Melee Weapons" }, } }, + ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1313 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [4249220643] = { "(4-6)% increased Attack Speed while Dual Wielding" }, } }, + ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1344 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2382196858] = { "(3-5)% increased Cast Speed while Dual Wielding" }, } }, + ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1315 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 1 }, modTags = { "attack", "speed" }, tradeHashes = { [3805075944] = { "(4-6)% increased Attack Speed while holding a Shield" }, } }, + ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1345 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1612163368] = { "(3-5)% increased Cast Speed while holding a Shield" }, } }, + ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1346 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2066542501] = { "(3-5)% increased Cast Speed while wielding a Staff" }, } }, + ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1328 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1584440377] = { "(6-8)% increased Unarmed Attack Speed with Melee Skills" }, } }, + ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, + ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(6-8)% increased Projectile Speed" }, } }, + ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, + ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-8)% increased Trap Throwing Speed" }, } }, + ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1666 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(6-8)% increased Mine Throwing Speed" }, } }, + ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(2-4)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, + ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 994 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, + ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 994 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, + ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 995 }, 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 = { 995 }, 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 = { 996 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, + ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1163 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(12-14)% increased Attack Damage while holding a Shield" }, } }, + ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1272 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "fire", "caster", "speed" }, tradeHashes = { [1476643878] = { "(3-5)% increased Cast Speed with Fire Skills" }, } }, + ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1280 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "cold", "caster", "speed" }, tradeHashes = { [928238845] = { "(3-5)% increased Cast Speed with Cold Skills" }, } }, + ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1285 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_speed", "elemental", "lightning", "caster", "speed" }, tradeHashes = { [1788635023] = { "(3-5)% increased Cast Speed with Lightning Skills" }, } }, + ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1292 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "chaos", "caster", "speed" }, tradeHashes = { [2054902222] = { "(3-5)% increased Cast Speed with Chaos Skills" }, } }, + ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1942 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (5-10)% increased Cast Speed" }, } }, + ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 991 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, + ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 992 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, + ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 993 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, + ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 994 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, + ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 995 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, + ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 996 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, + ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, + ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-12) to maximum Life" }, } }, + ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 888 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, + ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-12) to maximum Mana" }, } }, + ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 893 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, + ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(12-15)% increased Mana Regeneration Rate" }, } }, + ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-12) to maximum Energy Shield" }, } }, + ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, + ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 886, 891 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(4-6) to maximum Mana" }, [3299347043] = { "+(4-6) to maximum Life" }, } }, + ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 888, 893 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, + ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 885, 893 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, + ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 885, 888 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, + ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (0.2-0.4)% of Physical Attack Damage as Life" }, } }, + ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (0.2-0.4)% of Physical Attack Damage as Mana" }, } }, + ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, + ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1505 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, + ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1508 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (2-3) Energy Shield per Enemy Hit with Attacks" }, } }, + ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, + ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 881 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, + ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, + ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 881, 883 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2866361420] = { "(6-12)% increased Armour" }, } }, + ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 881, 885 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [2866361420] = { "(6-12)% increased Armour" }, } }, + ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 883, 885 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, + ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(4-6)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3917489142] = { "(4-6)% increased Rarity of Items found" }, } }, + ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(20-40) to Accuracy Rating" }, } }, + ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-14)% increased Accuracy Rating" }, } }, + ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, + ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 975, 1331 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "critical" }, tradeHashes = { [587431675] = { "(6-10)% increased Critical Hit Chance" }, [624954515] = { "(6-10)% increased Accuracy Rating" }, } }, + ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(9-12)% increased Critical Damage Bonus" }, } }, + ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1364 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [107161577] = { "(12-16)% increased Critical Hit Chance with Maces or Sceptres" }, } }, + ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1367 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2560468845] = { "(12-16)% increased Critical Hit Chance with Axes" }, } }, + ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1363 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2630620421] = { "(12-16)% increased Critical Hit Chance with Swords" }, } }, + ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1360 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(12-16)% increased Critical Hit Chance with Bows" }, } }, + ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1361 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3428039188] = { "(12-16)% increased Critical Hit Chance with Claws" }, } }, + ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(12-16)% increased Critical Hit Chance with Daggers" }, } }, + ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1366 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1729982003] = { "(12-16)% increased Critical Hit Chance with Wands" }, } }, + ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1365 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3621953418] = { "(12-16)% increased Critical Hit Chance with Quarterstaves" }, } }, + ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1385 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(8-10)% to Critical Damage Bonus with Maces or Sceptres" }, } }, + ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1386 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(8-10)% to Critical Damage Bonus with Axes" }, } }, + ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1388 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(8-10)% to Critical Damage Bonus with Swords" }, } }, + ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1387 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "(8-10)% increased Critical Damage Bonus with Bows" }, } }, + ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1390 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(8-10)% to Critical Damage Bonus with Claws" }, } }, + ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1384 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "(8-10)% increased Critical Damage Bonus with Daggers" }, } }, + ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1389 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(8-10)% to Critical Damage Bonus with Wands" }, } }, + ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1391 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1661096452] = { "(8-10)% increased Critical Damage Bonus with Quarterstaves" }, } }, + ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1373 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2381842786] = { "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons" }, } }, + ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1371 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [764295120] = { "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons" }, } }, + ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1375 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3702513529] = { "(14-18)% increased Attack Critical Hit Chance while Dual Wielding" }, } }, + ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1369 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1215447494] = { "(10-14)% increased Critical Hit Chance while holding a Shield" }, } }, + ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1374 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1199429645] = { "(10-14)% increased Melee Critical Hit Chance" }, } }, + ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-14)% increased Critical Hit Chance for Spells" }, } }, + ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(12-16)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(100-120)% increased Critical Hit Chance with Traps" }, } }, + ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1370 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [214031493] = { "(12-16)% increased Critical Hit Chance with Mines" }, } }, + ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1376 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "critical" }, tradeHashes = { [1104796138] = { "(14-18)% increased Critical Hit Chance with Fire Skills" }, } }, + ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1378 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "critical" }, tradeHashes = { [3337344042] = { "(14-18)% increased Critical Hit Chance with Cold Skills" }, } }, + ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1377 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1186596295] = { "(14-18)% increased Critical Hit Chance with Lightning Skills" }, } }, + ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1379 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "critical" }, tradeHashes = { [439950087] = { "(10-14)% increased Critical Hit Chance with Elemental Skills" }, } }, + ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1380 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [1424360933] = { "(12-16)% increased Critical Hit Chance with Chaos Skills" }, } }, + ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1393 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons" }, } }, + ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1372 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [252507949] = { "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons" }, } }, + ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3908 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2546185479] = { "+(15-18)% to Critical Damage Bonus while Dual Wielding" }, } }, + ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1396 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3668589927] = { "+(6-8)% to Melee Critical Damage Bonus while holding a Shield" }, } }, + ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1394 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(12-15)% to Melee Critical Damage Bonus" }, } }, + ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(12-15)% increased Critical Spell Damage Bonus" }, } }, + ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1780168381] = { "+(8-10)% to Critical Damage Bonus with Traps" }, } }, + ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1397 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2529112796] = { "+(8-10)% to Critical Damage Bonus with Mines" }, } }, + ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1398 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHashes = { [2307547323] = { "+(15-18)% to Critical Damage Bonus with Fire Skills" }, } }, + ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1400 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHashes = { [915908446] = { "+(15-18)% to Critical Damage Bonus with Cold Skills" }, } }, + ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1399 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [2441475928] = { "+(15-18)% to Critical Damage Bonus with Lightning Skills" }, } }, + ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1401 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [1569407745] = { "+(12-15)% to Critical Damage Bonus with Elemental Skills" }, } }, + ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1402 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [2710238363] = { "+(8-10)% to Critical Damage Bonus with Chaos Skills" }, } }, + ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, + ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, + ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, + ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 1015 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, + ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 1017 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, + ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 1020 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, + ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1052 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2517001139] = { "(10-14)% increased Stun Duration on Enemies" }, } }, + ["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 1059 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHashes = { [2511217560] = { "(25-35)% increased Stun Recovery" }, } }, + ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1631 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, + ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1631 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, + ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1631 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, + ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, + ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1947 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, + ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Curses" }, } }, + ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, + ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(6-8)% chance to Avoid being Shocked" }, } }, + ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, + ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1598 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, + ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, + ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 1055 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(2-3)% chance to Freeze" }, } }, + ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 1057 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, + ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1862 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, + ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1864 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, + ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1879 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(10-14)% increased Power Charge Duration" }, } }, + ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1735 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [977908611] = { "(4-6)% chance to Knock Enemies Back on hit" }, } }, + ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1735 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, + ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1128 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+1% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1124 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+1% Chance to Block Attack Damage while holding a Shield" }, } }, + ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1127 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+1% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5628 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, + ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, } }, + ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, + ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9816 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, + ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1909 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced effect of Curses on you" }, } }, + ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, + ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1494 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, + ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9818 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, + ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1066 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, + ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, + ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, + ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, + ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 1055, 1612 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, + ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 1057, 1611 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, + ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1613 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, + ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2894, 2897 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, + ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2268, 4649 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, + ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4580 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1625 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, + ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, + ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2659 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(2-4)% Chance to Block Attack Damage" }, } }, + ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, + ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, + ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, + ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, + ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, + ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, + ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, + ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, + ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2545 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2779 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2779 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, + ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2782 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2782 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, + ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2783 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2783 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2780 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2780 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2784 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2784 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2781 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2781 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, + ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, + ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 1% of Physical Damage as Life" }, } }, + ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 661 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3591397930] = { "Knocks Back Enemies in an Area when you use a Flask" }, } }, + ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1640 }, 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 = { 2349 }, 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 = { 2349 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10688 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 813 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, + ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, + ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 813 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, + ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1605 }, 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 = { 1605 }, 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 = { 1597 }, 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 = { 1597 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, + ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2262 }, 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 = { 2262 }, 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 = { 2262 }, 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 = { 2262 }, 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 = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2268 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2268 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2268 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2788 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, + ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2785 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, + ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(0.3-0.4) metres to Melee Strike Range while Unarmed", statOrder = { 2806 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.3-0.4) metres to Melee Strike Range while Unarmed" }, } }, + ["UnarmedStrikeRangeUnique1"] = { affix = "", "+0.3 metres to Melee Strike Range while Unarmed", statOrder = { 2806 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+0.3 metres to Melee Strike Range while Unarmed" }, } }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2795 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2799 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2800 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [727625899] = { "Passives in Radius apply to Minions instead of you" }, } }, + ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2499 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "2% increased Spell Damage per 10 Intelligence" }, } }, + ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1773 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, + ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1773 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, + ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "50% increased Critical Damage Bonus" }, } }, + ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2786 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of maximum Life when you Consume a corpse" }, } }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2787 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, + ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2792 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, + ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1212 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [761505024] = { "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you" }, } }, + ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1213 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3434279150] = { "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you" }, } }, + ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2791 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 2% of their maximum Life when they Block" }, } }, + ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2791 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their maximum Life when they Block" }, } }, + ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-30)% increased Damage while Leeching" }, } }, + ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, + ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, + ["IncreasedDamageWhileLeechingUnique__3"] = { affix = "", "(25-50)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-50)% increased Damage while Leeching" }, } }, + ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2560 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, + ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2560 }, 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 = { 2560 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, + ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 2012 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have 10% chance to Fortify" }, } }, + ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1961 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, + ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2807 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [886366428] = { "(20-25)% increased Damage for each Magic Item Equipped" }, } }, + ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2809 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [736847554] = { "Totems fire 2 additional Projectiles" }, } }, + ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2810 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3779823630] = { "(40-60)% increased Spell Damage while no Mana is Reserved" }, } }, + ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2813 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1212897608] = { "4% increased Attributes per allocated Keystone" }, } }, + ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2802 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1609999275] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks" }, } }, + ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2803 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [622657842] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells" }, } }, + ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10599 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10599 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10599 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2311 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, + ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1464 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7645 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7647 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, + ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2830 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2831 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "(15-20)% increased Vaal Skill Effect Duration" }, } }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10401 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, + ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2833 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Hit Chance" }, } }, + ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2834 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Damage Bonus" }, } }, + ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, + ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2502 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 8% increased Effect" }, } }, + ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "4% increased Curse Magnitudes" }, } }, + ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Curse Magnitudes" }, } }, + ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, + ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Curse Magnitudes" }, } }, + ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2836 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2701327257] = { "60% reduced Cost of Aura Skills that summon Totems" }, } }, + ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2835 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1633381214] = { "50% chance to gain an additional Vaal Soul per Enemy Shattered" }, } }, + ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2837 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [47271484] = { "10% increased Experience Gain for Corrupted Gems" }, } }, + ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2838 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1677654268] = { "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use" }, } }, + ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1514 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [751813227] = { "Lose 1% of maximum Life on Kill" }, } }, + ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1516 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1699499433] = { "Lose 1% of maximum Energy Shield on Kill" }, } }, + ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2846 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1556263668] = { "(20-30)% chance to Curse you with Punishment on Kill" }, } }, + ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1908 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3112863846] = { "An additional Curse can be applied to you" }, } }, + ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1172 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, + ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1967 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "10% increased Damage taken while on Full Energy Shield" }, } }, + ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1967 }, 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 = { 1711 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, + ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2671 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2848, 2849, 2864 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "defences", "physical_damage", "evasion", "damage", "physical", "attack" }, tradeHashes = { [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2851, 2852 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, } }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2850 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2853 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2854 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2859 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 860, 2858 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [1754445556] = { "Adds 1 to 2 Lightning damage to Attacks" }, } }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2862 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, } }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2863 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, + ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2746 }, 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 = { 2358 }, 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 = { 2358 }, 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 = { 2358 }, 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 = { 2270 }, 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 = { 2270 }, 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 = { 2270 }, 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 = { 2295 }, 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 = { 2308 }, 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 = { 524 }, 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 = { 1605 }, 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 = { 1605 }, 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 = { 352 }, 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 = { 2271 }, 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 = { 2271 }, 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 = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10642 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1306 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (100-140) Lightning Damage to Spells" }, } }, + ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1172 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, + ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1290 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-33) to (45-60) Chaos damage" }, } }, + ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1290 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (38-48) to (70-90) Chaos damage" }, } }, + ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1290 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-55) to (80-98) Chaos damage" }, } }, + ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1329 }, 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 = { 1329 }, 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 = { 1330 }, 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 = { 1330 }, 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 = { 1513 }, 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 = { 1513 }, 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 = { 1970 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, + ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1971 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, + ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2654 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, + ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3047 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, + ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2263 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1454946771] = { "Hits that Stun inflict Bleeding" }, } }, + ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3081 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5522 }, 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 maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of maximum Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, + ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of maximum Mana on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1510 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of maximum Energy Shield on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1510 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of maximum Energy Shield on Kill" }, } }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, } }, + ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3043, 3044, 3045 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, + ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3043, 3044, 3045 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2973 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks" }, } }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2967, 2967.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, } }, + ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2966, 2966.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, + ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2956 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, + ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3091 }, 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 = "", "1 to 3 Added Attack Physical Damage per 25 Strength", statOrder = { 4535 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "1 to 3 Added Attack Physical Damage per 25 Strength" }, } }, + ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3092 }, 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 = { 3099 }, 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 = { 375 }, 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 = { 376 }, 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 = { 376 }, 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 = { 377 }, 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 = { 378 }, 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 = { 379 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, + ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 380 }, 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 = { 380 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, + ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 650 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [570159344] = { "Consumes Frenzy Charges on use" }, } }, + ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3102 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Hit Chance against Blinded Enemies" }, } }, + ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3102 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Hit Chance against Blinded Enemies" }, } }, + ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3760 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits against Hindered Enemies" }, } }, + ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3122 }, 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 = { 3123 }, 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 = { 550 }, 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 = { 390, 390.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 = { 459 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, + ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 51 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are doubled" }, } }, + ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 51 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "Implicit Modifier magnitudes are tripled" }, } }, + ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3250 }, 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 = { 3254 }, 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 Hit Chance", statOrder = { 3253 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3253 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3252 }, 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 = { 573 }, 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 = { 573 }, 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 = { 573 }, 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 Hit with this Weapon", statOrder = { 538 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon" }, } }, + ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1324 }, 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 = { 1233 }, 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 = { 1217 }, 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 = { 3263 }, 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 = { 3255 }, 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 Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3256 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills" }, } }, + ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3259 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "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 = { 3261 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "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 = { 3266 }, 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" }, } }, + ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3267 }, 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 = { 1278 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1278 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks" }, } }, + ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 663 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [538730182] = { "Creates a Smoke Cloud on Use" }, } }, + ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 645 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2146730404] = { "Creates Consecrated Ground on Use" }, } }, + ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 646 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311869501] = { "Creates Chilled Ground on Use" }, } }, + ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 660 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2005503156] = { "Taunts nearby Enemies on use" }, } }, + ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 682, 682.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2434293916] = { "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit" }, } }, + ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1587 }, 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 = { 3282 }, 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 = { 3282 }, 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 = { 2512 }, 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 = { 3283 }, 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 = { 565 }, 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 = { 2722 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, + ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 753 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1935500672] = { "Petrified during Effect" }, } }, + ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 735 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHashes = { [677302513] = { "(40-50)% additional Physical Damage Reduction during Effect" }, } }, + ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2889 }, 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 = { 3423 }, 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 = { 3424 }, 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 = { 549 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, + ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3417 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of maximum Life per second while Frozen" }, } }, + ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3301 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "100% chance to knockback on Counterattack" }, } }, + ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3118 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "20% chance for Energy Shield Recharge to start when you Block" }, } }, + ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3464 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, + ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3433 }, 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 = { 3434 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, + ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 629, 810 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "flask", "resource", "life", "energy_shield" }, tradeHashes = { [851224302] = { "Zealot's Oath during Effect" }, [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, } }, + ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3438 }, 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 Hit Chance against Enemies that are on Full Life", statOrder = { 3439 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Hit Chance against Enemies that are on Full Life" }, } }, + ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3440 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 Damage as Extra Lightning Damage with Attacks", statOrder = { 3448 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [2329121140] = { "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks" }, } }, + ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3446 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain 15% of Physical Damage as Extra Fire Damage with Attacks" }, } }, + ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3446 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, + ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3449 }, 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 = { 3366 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, + ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3366 }, 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 = { 3366 }, 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 = { 3366 }, 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 = { 461 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, + ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9686 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3451 }, 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 = { 362 }, 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 = { 3071 }, 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 = { 1439 }, 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 = { 1961 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, + ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 749 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4267616253] = { "Immunity to Damage during Effect" }, } }, + ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3464 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, + ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3467 }, 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 = { 3468 }, 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 = { 3469 }, 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 = { 3075 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, + ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1663 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [497716276] = { "(40-60)% increased Trap Trigger Area of Effect" }, } }, + ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3103 }, 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 = { 3779 }, 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 = { 2900 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, + ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3466 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087710344] = { "(8-12)% Chance for Traps to Trigger an additional time" }, } }, + ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3465 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3391324703] = { "Traps and Mines deal (3-5) to (10-15) additional Physical Damage" }, } }, + ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 729 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3686711832] = { "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost" }, } }, + ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3743 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3192135716] = { "Traps and Mines have a 25% chance to Poison on Hit" }, } }, + ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 381 }, 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 = { 381 }, 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 = { 452 }, 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 = { 452 }, 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 = { 3082 }, 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 Allies in your Presence on Hit", statOrder = { 5529 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, + ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 567 }, 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 = { 1708 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1708 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3780 }, 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 = { 3784 }, 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 = { 7772 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, + ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3787 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critical Hit Shocked Enemies" }, } }, + ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3788 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Hits against non-Shocked Enemies" }, } }, + ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3806 }, 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 = { 3805 }, 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 = { 385 }, 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 = { 3807 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3808 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, } }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3809 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3812 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, } }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3811 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2948375275] = { "25% increased Critical Hit Chance per Grand Spectrum" }, } }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3813 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+7% to all Elemental Resistances per socketed Grand Spectrum" }, } }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3814 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per socketed Grand Spectrum" }, } }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3810 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3818 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [482240997] = { "Minions have +10% to Critical Damage Bonus per Grand Spectrum" }, } }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3815 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3816 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3817 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, + ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1578 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 1578 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_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 = { 9640 }, 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 = { 1577 }, 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 = { 5978 }, 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 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4532 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 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 = { 4532 }, 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 20 Dexterity", statOrder = { 2322 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9132 }, 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 = { 3983 }, 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 = { 3981 }, 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 = { 8937 }, 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 = { 5684 }, 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 = { 9638 }, 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 = { 9638 }, 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 = { 9674 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5567 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6771 }, 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 = { 5669 }, 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 = { 5669 }, 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 = { 4913 }, 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 = { 1520 }, 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 Reckoning Skill", statOrder = { 488 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Reckoning Skill" }, } }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9077 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3284 }, 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 = { 487 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, + ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 487 }, 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 = { 4101 }, 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 = { 9387 }, 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 = { 2898 }, 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 = { 2898 }, 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 = { 552 }, 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 = { 589 }, 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 = { 4576 }, 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", statOrder = { 9613 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4409 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6475 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5826 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, + ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4317 }, 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 = { 874 }, 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 = { 1434 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "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 = { 1434 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (5-10)% of maximum Life as Extra maximum Energy Shield" }, } }, + ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2865 }, 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%" }, } }, + ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 58 }, 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 = { 2302 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7852, 7852.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7853, 7853.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7830, 7830.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7866, 7866.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, + ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 558 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, + ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 558 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, + ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3677 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4345 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, + ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3167, 3167.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" }, } }, + ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3391 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, + ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3086 }, 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 = { 3820 }, 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 maximum Mana when you Shock an Enemy", statOrder = { 3822 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of maximum 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 = { 547, 547.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [723388324] = { "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, + ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3835 }, 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 Hit Chance when in Main Hand", statOrder = { 3834 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Hit Chance when in Main Hand" }, } }, + ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2491 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Damage Bonus per Green Socket" }, } }, + ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2487 }, 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" }, } }, + ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 776 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1085359447] = { "(50-100)% increased Charges gained by Other Flasks during Effect" }, } }, + ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 808 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741956733] = { "Gains no Charges during Effect of any Overflowing Chalice Flask" }, } }, + ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3783 }, 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 = { 3827 }, 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 = { 3830 }, 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 = { 3826 }, 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 = { 3837 }, 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 = { 3838 }, 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 used a Warcry Recently", statOrder = { 3831 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've used a Warcry Recently" }, } }, + ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3831 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've used a Warcry Recently" }, } }, + ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3829 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of maximum 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 = { 3825 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, + ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3843 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4095359151] = { "20% increased Damage with Hits for each Level higher the Enemy is than you" }, } }, + ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3833 }, 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 = { 4597 }, 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 = { 1424 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, + ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3823 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3824 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 1579 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, + ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on killing a Frozen enemy", statOrder = { 1576 }, 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 = { 2282 }, 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 = { 2283 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, + ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3842 }, 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 = { 393 }, 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 = { 3828 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, + ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3832 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3204585690] = { "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem" }, } }, + ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3844 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem" }, } }, + ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1449 }, 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 = { 3845 }, 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 = { 3848 }, 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 Counterattacks", statOrder = { 3856 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Counterattacks" }, } }, + ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3850 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2114157293] = { "(16-20)% increased Golem Damage for each Type of Golem you have Summoned" }, } }, + ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3852 }, 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 = { 3853 }, 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 = { 3854 }, 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 = { 7965 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, 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 = { 1286 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, + ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1206 }, 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 = { 1206 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, + ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1268 }, 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 = { 1268 }, 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 = { 1268 }, 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 = { 1268 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, + ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1274 }, 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 = { 1274 }, 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 = { 1274 }, 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 = { 1274 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, + ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1282 }, 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 = { 1282 }, 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 = { 1282 }, 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 = { 1282 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, + ["UniqueGlobalAddedChaosDamage1UNUSED"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1286 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, + ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1554 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [115109959] = { "Regenerate 2% of maximum Energy Shield per second while on Low Life" }, } }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1927 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2006370586] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, + ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2377 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, + ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3858 }, 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 = { 3859 }, 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 = { 2693 }, 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 = { 2693 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, + ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3861 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3860 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 3893 }, 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 = { 3839 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "minion_resistance", "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9020 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, + ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3841 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "physical_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, + ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 739 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, + ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3889 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, + ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3891 }, 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 = { 3890 }, 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 = { 3890 }, 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 = { 3279 }, 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 = { 3866 }, 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 = { 3866 }, 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 = { 1620 }, 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 = { 3904 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, + ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3905 }, 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 = { 3905 }, 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 = { 286 }, 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 = { 386 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, + ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2622 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1888494262] = { "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1443 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of maximum Life per second per Endurance Charge" }, } }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4359 }, 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 = { 3247 }, 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 = { 3247 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, + ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3446 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, + ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, + ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3018 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 1644 }, 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 = { 2894 }, 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 = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, + ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 785 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [803730540] = { "Immunity to Freeze, Chill, Curses and Stuns during Effect" }, } }, + ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3906 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, + ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3906 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, + ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3906 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, + ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2204 }, 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 = { 1693 }, 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 = { 3291 }, 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 Hits", statOrder = { 3920 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Hits" }, } }, + ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3921 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Hit" }, } }, + ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3921 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Hit" }, } }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7613 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3919 }, 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 Hits", statOrder = { 3929 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, + ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3930 }, 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 = { 3931 }, 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 = { 3967 }, 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 maximum Life when you Ignite an Enemy", statOrder = { 3968 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of maximum Life when you Ignite an Enemy" }, } }, + ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3969 }, 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 = { 9270 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 7922 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 5390, 8283 }, 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 = { 8279, 8280 }, 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 = { 6151, 8284 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, + ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8281, 8282 }, 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" }, } }, + ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3970 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, + ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3973 }, 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 = { 3972 }, 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 = { 3976 }, 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 = { 3974 }, 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 = { 9004 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 = { 4222 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6879 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, + ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 605 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown" }, } }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4483 }, 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 = { 4483 }, 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 = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, + ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2638 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Physical Damage from Hits also Contributes to Shock Chance" }, } }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6074 }, 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 = { 6074 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6074 }, 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 = { 6555 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7886 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9105 }, 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 = { 6814 }, 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 = { 3159 }, 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 = { 1737 }, 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 = { 1764 }, 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 = { 6411 }, 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 = { 1763 }, 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 = { 8889 }, 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 = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1762 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+4 Accuracy Rating per 2 Intelligence" }, } }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6462 }, 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 = { 5518 }, 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 = { 9531 }, 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 = { 9532 }, 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 = { 4605 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, + ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 760 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [323705912] = { "Skills fire 2 additional Projectiles during Effect" }, } }, + ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 737 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10710 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, + ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2662 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9296 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, + ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10601 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10601 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10601 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10601 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6900 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, + ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6899 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, + ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3374 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3384291300] = { "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds" }, } }, + ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3375 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, + ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3375 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, + ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3034 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729180395] = { "Golem Skills have (20-30)% increased Cooldown Recovery Rate" }, } }, + ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3246099900] = { "Summoned Golems have (30-45)% increased Cooldown Recovery Rate" }, } }, + ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6897 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6895 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6903 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, + ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4102 }, 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 Hit in the past 8 seconds", statOrder = { 9972 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9962 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5882 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, + ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3984 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, + ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3982 }, 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 = { 5640 }, 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 Hits deal no Damage", statOrder = { 9179 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9179 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5853 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5853 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6326 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2906 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Damage Bonus 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 = { 4514 }, 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 = { 5503 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6812 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7723 }, 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 = { 566 }, 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 = { 5280 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 9992 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10714 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6545 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, + ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10615 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2897 }, 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 = { 9982 }, 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 = { 4196 }, 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 = { 6808 }, 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 = { 9068 }, 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 = { 9303 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, + ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4649 }, 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 = { 7369 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, 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 = { 7258 }, 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 = { 8846 }, 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 = { 7474 }, 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 = { 10585 }, 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 = { 8848 }, 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 = { 5988 }, 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 = { 7368 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9126 }, 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 = { 10463 }, 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 = { 3160 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 2911 }, 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 = { 2912 }, 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 = { 10039 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, + ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 806 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, + ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 805 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, + ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 387 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7176 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, + ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 872 }, 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 = { 7270 }, 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 = { 6562 }, 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 = { 501 }, 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 = { 496 }, 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 = { 496 }, 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" }, } }, + ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4284 }, 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 = { 4172 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, + ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7446 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, + ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7963 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6410 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, + ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 494 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7120 }, 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 = { 4607 }, 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 = { 5979 }, 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 = { 9819, 9819.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 = { 10330 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10330 }, 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 = { 8975 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "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 = { 9034 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9073 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, + ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 141 }, 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 = { 141 }, 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 = { 1789 }, 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 Damage Bonus while you have no Frenzy Charges", statOrder = { 1788 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Damage Bonus while you have no Frenzy Charges" }, } }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4139 }, 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 = { 9102 }, 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 = { 5665 }, 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 = { 6544 }, 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 = { 5995 }, 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 = { 6793, 6793.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 = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2617 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Fire Damage from Hits also Contributes to Poison Magnitude" }, } }, + ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2616 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Cold Damage from Hits also Contributes to Poison Magnitude" }, } }, + ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2618 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Lightning Damage from Hits also Contributes to Poison Magntiude" }, } }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6566 }, 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 = { 5692 }, 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 = { 7543 }, 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 = { 1430 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield" }, } }, + ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 492 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, + ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 465 }, 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 = { 465 }, 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 = { 465 }, 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 = { 5576 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10687 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9051 }, 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 = { 9051 }, 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 = { 603 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, + ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 541 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, + ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3659 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10131 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6424 }, 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 = { 3148 }, 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 Hits while you have no Power Charges", statOrder = { 6521 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits 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 = { 3158 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [3655758456] = { "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 = { 485 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, + ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 489 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 22 Blight Skill" }, } }, + ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 468 }, 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 = { 5564 }, 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 = { 2895 }, 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 Hit Chance", statOrder = { 3985 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Hit Chance" }, } }, + ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 384 }, 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 = { 383 }, 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 = { 382 }, 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 = { 382 }, 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 = { 376 }, 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 = { 540 }, 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 = { 8923, 8923.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 = { 9453 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6775 }, 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 = { 6823 }, 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 = { 9454 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10549 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10549 }, 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 = { 7772 }, 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 = { 4868 }, 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 = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6085 }, 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 = { 6085 }, 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 = { 6085 }, 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 = { 1439, 1444 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "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 = { 542 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, + ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3986, 3986.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion" }, } }, + ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3988, 3988.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion" }, } }, + ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3987, 3987.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion" }, } }, + ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3989 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion" }, } }, + ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3990 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, + ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3991 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, + ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 539 }, 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 Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7511 }, 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 = { 7511 }, 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 = { 7511 }, 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 = { 76 }, 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 = { 822 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 822 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["UniqueLocalNoAttributeRequirements1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 822 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["UniqueLocalNoAttributeRequirements2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 822 }, 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 = { 125 }, 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 = { 126 }, 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 = { 127 }, 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 = { 10207 }, 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 = { 6537 }, 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 = { 458 }, 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 = { 464 }, 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 = { 466 }, 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 = { 533 }, 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 = { 534 }, 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 = { 535 }, 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 = { 9939 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, + ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1527 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Spectres have (50-100)% increased maximum Life" }, } }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7640 }, 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 = { 1348 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7980 }, 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 = { 6830 }, 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 = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7903 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7875, 7876 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, + ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 802, 803 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, + ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 556 }, 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 = { 554 }, 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 = { 557 }, 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 = { 555 }, 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 = { 559 }, 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 = { 381 }, 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 = { 502, 502.1, 502.2, 502.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 = { 503, 503.1, 503.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" }, } }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9462 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4808 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5577 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5994 }, 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 = { 9129 }, 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 = { 10274, 10274.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" }, } }, + ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4420 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5259 }, 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 = { 5254 }, 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 = { 5272 }, 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 = { 5989 }, 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 = { 1614 }, 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 = { 1614 }, 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 = { 1614 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, + ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 593 }, 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 = { 6612 }, 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 = { 6665 }, 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 = { 5729 }, 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 = { 10453 }, 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 = { 6119 }, 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 = { 10204 }, 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 = { 10204 }, 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 = { 9535 }, 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 = { 6440 }, 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 = { 6297 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5673 }, 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 = { 10699 }, 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 = { 10704 }, 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 = { 10708 }, 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 = { 10707 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, + ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2628 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "All Elemental Damage from Hits Contributes to Shock Chance" }, } }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 572 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7603 }, 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 = { 7680 }, 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, no more than once every second", statOrder = { 7678 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7604 }, 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 = { 7611 }, 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 = { 7600 }, 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" }, } }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6077 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, + ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 207 }, 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 1 Elemental Penetration", statOrder = { 207 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 1 Elemental Penetration" }, } }, + ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4042 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, + ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 4044 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of maximum Life when you lose a Spirit Charge" }, } }, + ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 4045 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of maximum 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 = { 9257 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "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 = { 594 }, 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 = { 4041 }, 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 = { 4043 }, 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 = { 4039 }, 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 = { 4039 }, 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 = { 10595 }, 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 = { 577 }, 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 = { 578 }, 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 = { 8942 }, 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 = { 5575 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "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 = { 6268 }, 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 = { 9420 }, 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 = { 3916 }, 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 = { 3074 }, 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 = { 1555 }, 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 = { 1555 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8939 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4177 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, + ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2988 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "(6-10)% increased Critical Damage Bonus per Power Charge" }, } }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9593 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, + ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 597 }, 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 = { 4014, 6912 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, + ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3995 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your other Ring is an Elder Item" }, } }, + ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3992 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your other Ring is a Shaper Item" }, } }, + ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3993 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your other Ring is an Elder Item" }, } }, + ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3994 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your other Ring is a Shaper Item" }, } }, + ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 4001 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of maximum Life when you use a Mana Flask" }, } }, + ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 4002 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Recovery from Mana Flasks also applies to Life" }, } }, + ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4004 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, + ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4003 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10642 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1303 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (6-8) to (10-12) Physical Damage to Spells" }, } }, + ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 601 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "green_herring", "skill" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, + ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 600 }, 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 = { 602 }, 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 = { 499 }, 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 = { 511 }, 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 = { 507 }, 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 = { 530 }, 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 = { 523 }, 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 = { 512 }, 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 = { 1461 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5984 }, 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 = { 5984 }, 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 = { 7473 }, 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 = { 6249 }, 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 = { 5492 }, 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 = { 8641 }, 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 = { 9588 }, 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 = { 4035 }, 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 = { 4034 }, 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 = { 2257 }, 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 = { 5629 }, 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 = { 5629 }, 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 = { 9801 }, 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 = { 9801 }, 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 = { 333 }, 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 = { 331 }, 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 = { 8929 }, 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 = { 8940 }, 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 = { 4589 }, 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 = { 4450 }, 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 = { 4449 }, 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 = { 7475 }, 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 = { 7988 }, 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 = { 4588 }, 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 = { 579 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, + ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7845, 7848 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7844, 7847 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7846, 7849 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, + ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1862 }, 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 = { 1864 }, 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 = { 1879 }, 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 = { 2401 }, 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 = { 2403 }, 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 = { 2405 }, 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 = { 9127 }, 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 = { 1555 }, 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 = { 9130 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, + ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1443 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of maximum Life per second per Endurance Charge" }, } }, + ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2400 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of maximum Life per second per Frenzy Charge" }, } }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7495 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, + ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2915 }, 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 = { 2992 }, 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 = { 5995 }, 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 = { 8932 }, 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 = { 3916 }, 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 = { 8936 }, 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 = { 4161 }, 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 = { 4162 }, 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 = { 4163 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9245 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "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 = { 9244 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9247 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9422 }, 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 = { 1425 }, 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 = { 6412 }, 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 = { 3886 }, 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 = { 6792 }, 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 = { 6793, 6793.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 = { 6757 }, 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 = { 1586 }, 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 Hit", statOrder = { 1583 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Hit" }, } }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4463 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, + ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1783 }, 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 = { 4464 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5840 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5841 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, + ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2988 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "3% increased Critical Damage Bonus per Power Charge" }, } }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5575 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9413 }, 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 = { 9415 }, 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 = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", 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 = { 7357 }, 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 = { 6805 }, 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 = { 6726 }, 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 = { 3706 }, 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 Hit while at maximum Frenzy Charges", statOrder = { 6764 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9282 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10693 }, 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 = { 10694 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, + ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1942 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 1942 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 599 }, 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" }, } }, + ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3999 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "chaos" }, tradeHashes = { [1860646468] = { "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 = { 7194 }, 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 = { 7193 }, 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 = { 5664 }, 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 = { 7522 }, 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%" }, } }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 931 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, + ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 647 }, 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 = { 744 }, 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 Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 740 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, + ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 778 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, + ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1653 }, 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 = { 4046, 4047 }, 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 = { 4049, 4049.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" }, } }, + ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8821 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, + ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8822 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, + ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5756 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, + ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9877 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, + ["UniqueCannotHaveEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2842 }, level = 1, group = "CannotHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1915, 7651 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2911, 7644 }, 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 = { 7998 }, 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 = { 7999 }, 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 Armour, Evasion and Energy Shield per 100 Strength you have", statOrder = { 2736 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1879586312] = { "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have" }, } }, + ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2735 }, 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 Damage Bonus per 100 Dexterity you have", statOrder = { 2737 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have" }, } }, + ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2738 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "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 = { 506 }, 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 = { 9474 }, 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 = { 9475 }, 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 = { 184 }, 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 = { 548 }, 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 = { 606, 606.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" }, } }, + ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2926 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, + ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, 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 = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10597 }, 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 = { 10597 }, 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 = { 10597 }, 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 = { 10597 }, 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 = { 10597 }, 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 = { 7140 }, 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 = { 7141 }, 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 = { 7523 }, 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 = { 7139 }, 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 = { 8855 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "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 = { 7525 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "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 = { 7127 }, 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 = { 7128 }, 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 = { 6550 }, 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 = { 7126 }, 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 = { 8832 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "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 = { 6551 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "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 = { 7130 }, 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 = { 7131 }, 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 = { 5672 }, 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 = { 7129 }, 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 = { 8815 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "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 = { 5674 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "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 = { 7135 }, 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 = { 7136 }, 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 = { 9408 }, 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 = { 7133 }, 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 = { 9779 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 = { 9416 }, 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 = { 7123 }, 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 = { 7124 }, 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 = { 5574 }, 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 = { 7122 }, 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 = { 4239 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "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 = { 5579 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10598 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10245 }, 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 = { 9836 }, 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 = { 5565 }, 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 = { 4347 }, 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 = { 6255 }, 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 = { 6290 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9186 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9769 }, 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 = { 9768 }, 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 = { 8970 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "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 = { 8960 }, 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 = { 7979 }, 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 = { 7947 }, 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 = { 9180 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9799 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7801 }, 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 = { 7799 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 931 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 624, 7622 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 624, 7577 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 624, 7598 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 624, 7898 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 624, 7672 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 624, 7594 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4538 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4539 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10616 }, 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 = { 90, 279 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, + ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 940, 1465 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7732 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, + ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 1455 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of 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 = { 7764 }, 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 Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7711 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, + ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 438 }, 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 Empowering the Attack", statOrder = { 9771, 9771.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10361 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, + ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2612 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, + ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2615 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, + ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2615 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, + ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4265 }, 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 = { 5643 }, 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 increase damage taken by Chill Magnitude", statOrder = { 6322 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7649 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7878, 7878.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10371 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, + ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10371 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, + ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 946 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, + ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 946 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, + ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5547 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, + ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5748 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, + ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 1038 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 829 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, + ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 945 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6233 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, + ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2900 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, + ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4117 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, + ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-30)% reduced Presence Area of Effect" }, } }, + ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1069 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% reduced Light Radius" }, } }, + ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1416 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(6-10)% increased Spirit" }, } }, + ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-40)% increased Armour" }, } }, + ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10533 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10532 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10209 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, + ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (20-30)% reduced Critical Damage Bonus" }, } }, + ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4679 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, + ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-16)% increased Skill Effect Duration" }, } }, + ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5910 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, + ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, + ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(15-25)% increased Area of Effect of Curses" }, } }, + ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, + ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, } }, + ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4112 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies {0:-d}% to Fire Resistance" }, } }, + ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4111 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, + ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4113 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, + ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10016 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5321 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, + ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-10)% increased maximum Mana" }, } }, + ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, + ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, } }, + ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7976 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, + ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10531 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9647 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6722 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9856 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, + ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-40)% increased Critical Hit Chance" }, } }, + ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, + ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, + ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5633 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, + ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (9-18)% increased Area of Effect", statOrder = { 9950 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-18)% increased Area of Effect" }, } }, + ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, + ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, } }, + ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4110 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies {0:-d}% to Cold Resistance" }, } }, + ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4115 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, + ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4122 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10015 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4543 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, + ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, } }, + ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, + ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7480 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, + ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10530 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10528 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9645 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6801 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7428 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, + ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-25)% increased Critical Damage Bonus" }, } }, + ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, + ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, + ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(9-18)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(9-18)% increased Area of Effect for Attacks" }, } }, + ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, + ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, + ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4116 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies {0:-d}% to Lightning Resistance" }, } }, + ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4114 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, + ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4242 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, + ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10014 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 56 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, + ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7717 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7714 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7714 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7716 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7715 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7718 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, + ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Augment Items", statOrder = { 177 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2081918629] = { "(50-100)% increased effect of Socketed Augment Items" }, } }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 77 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [231726304] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Shield" }, } }, + ["UniqueAtziriSplendourArmour1"] = { affix = "", "(200-300)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-300)% increased Armour" }, } }, + ["UniqueAtziriSplendourEvasion1"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-300)% increased Evasion Rating" }, } }, + ["UniqueAtziriSplendourEnergyShield1"] = { affix = "", "(200-300)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-300)% increased Energy Shield" }, } }, + ["UniqueAtziriSplendourArmourAndEvasion1"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, + ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-180)% increased Armour and Energy Shield" }, } }, + ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-180)% increased Evasion and Energy Shield" }, } }, + ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-120)% increased Armour, Evasion and Energy Shield" }, } }, + ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9881 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, + ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 60 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [250458861] = { "Only Soul Cores can be Socketed in this item" }, } }, + ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6455 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6453 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6453 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6453 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6453 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6454 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, + ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 628 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, + ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 637 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, + ["UniqueFlaskEffectNotRemovedOnFullLife__2"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 637 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, + ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 743, 746, 757 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, + ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 931 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, + ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6871 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, + ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3846 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, + ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4403 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, + ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6539 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, + ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10388 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, + ["UniqueOnlySocketRunes1"] = { affix = "", "Only Runes can be Socketed in this item", statOrder = { 59 }, level = 1, group = "OnlySocketRunes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [326412910] = { "Only Runes can be Socketed in this item" }, } }, + ["UniqueLocalIncreasedRuneEffect1"] = { affix = "", "200% increased effect of Socketed Runes", statOrder = { 175 }, level = 1, group = "LocalIncreasedRuneEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [704409219] = { "200% increased effect of Socketed Runes" }, } }, + ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5718 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, + ["UniqueDeflectionRatingPerMissingEnergyShield1"] = { affix = "", "+(70-100) to Deflection Rating per 50 missing Energy Shield", statOrder = { 10 }, level = 1, group = "FlatDeflectionRatingPer50MissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1207006772] = { "+(70-100) to Deflection Rating per 50 missing Energy Shield" }, } }, + ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10625 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, + ["UniqueCompanionDamageAgainstMarkedTargets1"] = { affix = "", "Companions deal (50-100)% increased damage to your Marked targets", statOrder = { 1722 }, level = 78, group = "CompanionDamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067622524] = { "Companions deal (50-100)% increased damage to your Marked targets" }, } }, + ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6831, 6831.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, + ["UniqueHitDamageBypassesEnergyShieldWhileBelowHalfEnergyShield1"] = { affix = "", "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", statOrder = { 1458 }, level = 1, group = "ESBypassWhileBelowHalfES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1311130924] = { "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" }, } }, + ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1135 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, + ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7635 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, + ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7671 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, + ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 49 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, + ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, + ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1894 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, + ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1688 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1661347488] = { "Lose (2.5-5)% of maximum Life per second" }, } }, + ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4731 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6105 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10162 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1535 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2357996603] = { "(-30-30)% reduced Totem Duration" }, } }, + ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2923 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3910614548] = { "25% increased Attack and Cast Speed if you've summoned a Totem Recently" }, } }, + ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-25)% increased amount of Life Leeched" }, } }, + ["UniqueMutatedVaalLifeLeechAmount1"] = { affix = "", "(20-30)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-30)% increased amount of Life Leeched" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { affix = "", "+(100-150) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, + ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "25% increased Flammability Magnitude" }, } }, + ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [472520716] = { "(6-10)% of Damage taken Recouped as Mana" }, } }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-150) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(50-150) to Evasion Rating" }, } }, + ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(1-60)% increased Fire Damage" }, } }, + ["UniqueMutatedVaalColdDamagePercentage"] = { affix = "", "(1-60)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(1-60)% increased Cold Damage" }, } }, + ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(1-60)% increased Lightning Damage" }, } }, + ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(1-60)% increased Chaos Damage" }, } }, + ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-60)% to Chaos Resistance" }, } }, + ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7340 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, + ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5328 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(5-10)% of Damage taken Recouped as Life" }, } }, + ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, + ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(10-30)% increased Life Recovery from Flasks" }, } }, + ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [1379411836] = { "+(17-23) to all Attributes" }, } }, + ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5833 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9663 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, + ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(15-25)% increased Flammability Magnitude" }, } }, + ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(26-40)% increased Ignite Magnitude" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5509 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, + ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2759 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [2839036860] = { "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration" }, } }, + ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9286 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6102 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-60-60)% to Lightning Resistance" }, } }, + ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7485 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(60-75) to Armour" }, } }, + ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, + ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3869 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3481736410] = { "(10-25)% increased Area of Effect if you've Killed Recently" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, + ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, + ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 77 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, + ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [1782086450] = { "(33-66)% faster start of Energy Shield Recharge" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4731 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, + ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(15-30)% increased Presence Area of Effect" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4696 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6467 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, + ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [3759663284] = { "(16-24)% increased Projectile Speed" }, } }, + ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6837 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, + ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3291 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [498214257] = { "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, + ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-120) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8805 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6787 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, + ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "25% increased Attack Speed" }, } }, + ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(33-66)% of Armour also applies to Elemental Damage" }, } }, + ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, + ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9703 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, + ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5550 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, + ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 9990 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, + ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 9989 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, + ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [4283407333] = { "+(2-4) to Level of all Skills" }, } }, + ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [3655769732] = { "+(5-10)% to Quality of all Skills" }, } }, + ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, + ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 997 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-60) to (70-90) Physical Damage" }, } }, + ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10584 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4696 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-3)% of maximum Life per second" }, } }, + ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4700 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(25-50)% increased Life Recovery from Flasks" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(220-320) to Armour" }, } }, + ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, + ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2277 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value" }, } }, + ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9524 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "has_attack_mod", "mutatedunique_vaal", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-150)% increased Elemental Damage with Attacks" }, } }, + ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(2-4)% to Critical Hit Chance" }, } }, + ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10275 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, + ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-200) to Armour" }, } }, + ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(100-200) to Evasion Rating" }, } }, + ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(66-100) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(66-100) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 178 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4065505214] = { "(10-20)% increased effect of Socketed Soul Cores" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4731 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-40)% increased Ignite Magnitude" }, } }, + ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5633 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1612 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1073942215] = { "(10-20)% increased Freeze Duration on Enemies" }, } }, + ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-20)% increased Curse Magnitudes" }, } }, + ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6245 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, + ["UniqueMutatedVaalDamagePerCurse"] = { affix = "", "(10-15)% increased Damage per Curse on you", statOrder = { 1172 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1019020209] = { "(10-15)% increased Damage per Curse on you" }, } }, + ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9686 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1439 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, + ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 893 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, + ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-6)% of Physical Attack Damage as Mana" }, } }, + ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6390 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, + ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6826 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, + ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9818 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, + ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9665 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, + ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-40)% increased effect of Arcane Surge on you" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(150-200) to Evasion Rating" }, } }, + ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, + ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10243 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, + ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, + ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(25-50)% increased Presence Area of Effect" }, } }, + ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, + ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6498, 6498.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, + ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 957 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skills" }, } }, + ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7463 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, + ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1421 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3470876581] = { "+(100-150) to Evasion Rating while on Low Life" }, } }, + ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1690 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3942946753] = { "Regenerate (2-3)% of maximum Life per second while on Low Life" }, } }, + ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2701 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on Hit" }, } }, + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9455 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, + ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 963 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skills" }, } }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4670 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, + ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 2208 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3190121041] = { "(50-100)% of Volatility Physical Damage Taken as Cold Damage" }, } }, + ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7215 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6418 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-100) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7401 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9451 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, + ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5508 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, + ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5801 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, + ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1879 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHashes = { [3872306017] = { "(-60-60)% reduced Power Charge Duration" }, } }, + ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4726 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, + ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-26)% to Chaos Resistance" }, } }, + ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 957 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(2-4) to Level of all Fire Skills" }, } }, + ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4272 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, + ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5589 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, + ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, + ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4510 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, + ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6283 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(260-400) to Armour" }, } }, + ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-20)% Lightning Resistance" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10162 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7877, 7877.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, + ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 881 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [2866361420] = { "(-30-30)% reduced Armour" }, } }, + ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 883 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [2106365538] = { "(-30-30)% reduced Evasion Rating" }, } }, + ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [3489782002] = { "+(-30-30) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalFireDamagePercentage1"] = { affix = "", "(-30-30)% reduced Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(-30-30)% reduced Fire Damage" }, } }, + ["UniqueMutatedVaalColdDamagePercentage1"] = { affix = "", "(-30-30)% reduced Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(-30-30)% reduced Cold Damage" }, } }, + ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(-30-30)% reduced Lightning Damage" }, } }, + ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(-30-30)% reduced Chaos Damage" }, } }, + ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "mutatedunique_vaal", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (-30-30)% reduced Damage" }, } }, + ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9947 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, + ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9953 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9965 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1548 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4696 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4699 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10663 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6106 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, + ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(70-100) to Evasion Rating" }, } }, + ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10631 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, + ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10429 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10430 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10428 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10432 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10431 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10427 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueMutatedVaalCurseGemLevel"] = { affix = "", "+(3-5) to Level of all Curse Skills", statOrder = { 970 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [805298720] = { "+(3-5) to Level of all Curse Skills" }, } }, + ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-40)% of Damage as Extra Fire Damage" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, + ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, + ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4693 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, + ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7629 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, + ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, + ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHashes = { [1310194496] = { "(-30-30)% reduced Global Physical Damage" }, } }, + ["UniqueMutatedVaalIncreasedLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 888 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["UniqueMutatedVaalAddedMaximumEnergyShield"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, + ["UniqueMutatedVaalDamageLifeRecoup"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4794 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(75-125)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [1062208444] = { "(75-125)% increased Armour" }, } }, + ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(75-125)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [124859000] = { "(75-125)% increased Evasion Rating" }, } }, + ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(75-125)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [4015621042] = { "(75-125)% increased Energy Shield" }, } }, + ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(75-125)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(75-125)% increased Armour and Evasion" }, } }, + ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(75-125)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(75-125)% increased Armour and Energy Shield" }, } }, + ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(75-125)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(75-125)% increased Evasion and Energy Shield" }, } }, + ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3639275092] = { "(30-50)% reduced Attribute Requirements" }, } }, + ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 1005 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [3771516363] = { "(6-9)% additional Physical Damage Reduction" }, } }, + ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(20-40)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(20-40)% of Damage taken Recouped as Life" }, } }, + ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(20-40)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(20-40)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 9% of Physical Attack Damage as Life" }, } }, + ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 6% of Physical Attack Damage as Mana" }, } }, + ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, + ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, + ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(50-75)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [2866361420] = { "(50-75)% increased Armour" }, } }, + ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(50-75)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [2106365538] = { "(50-75)% increased Evasion Rating" }, } }, + ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(50-75)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [2482852589] = { "(50-75)% increased maximum Energy Shield" }, } }, + ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(120-200)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(120-200)% increased Thorns damage" }, } }, + ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(30-49)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(30-49)% to Chaos Resistance" }, } }, + ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, + ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, + ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, + ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, + ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, + ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, + ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-60) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3981240776] = { "+(40-60) to Spirit" }, } }, + ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (25-40)% Fire Resistance" }, } }, + ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (25-40)% Cold Resistance" }, } }, + ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (25-40)% Lightning Resistance" }, } }, + ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, + ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+(2-3) to Maximum Endurance Charges", statOrder = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+(2-3) to Maximum Endurance Charges" }, } }, + ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+(2-3) to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+(2-3) to Maximum Frenzy Charges" }, } }, + ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+(2-3) to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+(2-3) to Maximum Power Charges" }, } }, + ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [803737631] = { "+(150-300) to Accuracy Rating" }, } }, + ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, + ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [680068163] = { "(50-75)% increased Stun Threshold" }, } }, + ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(50-75)% increased Freeze Threshold" }, } }, + ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(30-40)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(30-40)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [44972811] = { "(35-50)% increased Life Regeneration rate" }, } }, + ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [789117908] = { "(35-50)% increased Mana Regeneration Rate" }, } }, + ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(15-25)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(15-25)% increased Block chance" }, } }, + ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-6)% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [480796730] = { "+(4-6)% to maximum Block chance" }, } }, + ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1517 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [762600725] = { "(40-55) Life gained when you Block" }, } }, + ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1518 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2122183138] = { "(20-30) Mana gained when you Block" }, } }, + ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-35)% to all Elemental Resistances" }, } }, + ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, + ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, + ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, + ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(2-3) to Level of all Chaos Spell Skills" }, } }, + ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, + ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, + ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, + ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3917489142] = { "(25-35)% increased Rarity of Items found" }, } }, + ["CorruptionUpgradeAllDamage1"] = { affix = "", "(50-75)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [2154246560] = { "(50-75)% increased Damage" }, } }, + ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [970213192] = { "(8-16)% increased Skill Speed" }, } }, + ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(35-60)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-60)% increased Critical Damage Bonus" }, } }, + ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [4283407333] = { "+(2-3) to Level of all Skills" }, } }, + ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, + ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(35-50) to Dexterity" }, } }, + ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(35-50) to Intelligence" }, } }, + ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6869 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-75)% increased Physical Damage" }, } }, + ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, + ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-240)% increased Spell Damage" }, } }, + ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-60)% increased Spirit" }, } }, + ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-44) to (55-72) Fire Damage" }, } }, + ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-80) to (91-101) Fire Damage" }, } }, + ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-42) to (53-69) Cold Damage" }, } }, + ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { affix = "", "Adds (51-57) to (88-96) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (51-57) to (88-96) Cold Damage" }, } }, + ["CorruptionUpgradeLocalAddedLightningDamage1"] = { affix = "", "Adds (1-2) to (79-103) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (79-103) Lightning Damage" }, } }, + ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (131-141) Lightning Damage" }, } }, + ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (27-31) to (42-48) Chaos damage" }, } }, + ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-46) to (67-75) Chaos damage" }, } }, + ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, + ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(15-25)% to Critical Damage Bonus" }, } }, + ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, + ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7575 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(25-50)% chance to cause Bleeding on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7787 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7679 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7772 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 2011 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2301191210] = { "(25-50)% chance to Blind Enemies on hit" }, } }, + ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(140-200)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 989 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, + ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-75)% increased Flammability Magnitude" }, } }, + ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, + ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-75)% increased chance to Shock" }, } }, + ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-75)% increased Critical Hit Chance for Spells" }, } }, + ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3695891184] = { "Gain (40-55) Life per enemy killed" }, } }, + ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, + ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-35)% increased Cast Speed" }, } }, + ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(50-75)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [1782086450] = { "(50-75)% faster start of Energy Shield Recharge" }, } }, + ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (50-75)% increased Damage" }, } }, + ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 917 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (15-25)% increased Attack Speed" }, } }, + ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (15-25)% increased Cast Speed" }, } }, + ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 916 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-45)% increased Critical Damage Bonus" }, } }, + ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2321178454] = { "(50-75)% chance to Pierce an Enemy" }, } }, + ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-50)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-50)% chance to Chain an additional time from terrain" }, } }, + ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(14-16) to Strength" }, } }, + ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(14-16) to Dexterity" }, } }, + ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(14-16) to Intelligence" }, } }, + ["CorruptionUpgradeJewelFireResist1"] = { affix = "", "+(15-20)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-20)% to Fire Resistance" }, } }, + ["CorruptionUpgradeJewelColdResist1"] = { affix = "", "+(15-20)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-20)% to Cold Resistance" }, } }, + ["CorruptionUpgradeJewelLightningResist1"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, + ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, + ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(30-50)% of Armour also applies to Elemental Damage" }, } }, + ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (30-50)% of Evasion Rating" }, } }, + ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6105 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, + ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, + ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8849 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, + ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2333 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements" }, } }, + ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 997 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, + ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6102 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, + ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1449 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-20)% increased Mana Recovery rate" }, } }, + ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1444 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3240073117] = { "(10-20)% increased Life Recovery rate" }, } }, + ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7401 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, + ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 2209 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHashes = { [1904530666] = { "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, + ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, + ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4653 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, + ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10214 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, + ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2210 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHashes = { [4129825612] = { "(3-6)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2195 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(3-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2204 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(3-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2199 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(3-6)% of Physical damage from Hits taken as Lightning damage" }, } }, + ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-3)% to Maximum Chaos Resistance" }, } }, + ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9724 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, + ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9726 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, + ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9725 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, + ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4692 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, + ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, + ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, + ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, + ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, + ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { affix = "", "Gain (20-35)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (20-35)% of Damage as Extra Fire Damage" }, } }, + ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { affix = "", "Gain (20-35)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (20-35)% of Damage as Extra Cold Damage" }, } }, + ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { affix = "", "Gain (20-35)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (20-35)% of Damage as Extra Lightning Damage" }, } }, + ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { affix = "", "Gain (20-35)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (20-35)% of Damage as Extra Physical Damage" }, } }, + ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { affix = "", "Gain (20-35)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (20-35)% of Damage as Extra Chaos Damage" }, } }, + ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { affix = "", "Gain (35-50)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (35-50)% of Damage as Extra Fire Damage" }, } }, + ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { affix = "", "Gain (35-50)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (35-50)% of Damage as Extra Cold Damage" }, } }, + ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { affix = "", "Gain (35-50)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (35-50)% of Damage as Extra Lightning Damage" }, } }, + ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (35-50)% of Damage as Extra Physical Damage" }, } }, + ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (35-50)% of Damage as Extra Chaos Damage" }, } }, + ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [3655769732] = { "+10% to Quality of all Skills" }, } }, + ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10206 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, + ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1136 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, + ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 998 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, + ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-10)% increased Dexterity" }, } }, + ["CorruptionUpgradePercentageIntelligence"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, + ["CorruptionUpgradePercentageAllAttributesCopy"] = { affix = "", "(3-6)% increased Attributes", statOrder = { 997 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(3-6)% increased Attributes" }, } }, + ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, + ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, + ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [2541588185] = { "(15-30)% increased Duration" }, } }, + ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, + ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 949 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skills" }, } }, + ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 949 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-4) to Level of all Spell Skills" }, } }, + ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, + ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, + ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, + ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, + ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 956 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [2901213448] = { "+(1-2) to Level of all Elemental Skills" }, } }, + ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5889 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, + ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, + ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1612 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1073942215] = { "(20-30)% increased Freeze Duration on Enemies" }, } }, + ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [274716455] = { "(60-90)% increased Critical Spell Damage Bonus" }, } }, + ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4716 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, + ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, + ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [3759663284] = { "(20-40)% increased Projectile Speed" }, } }, + ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7238 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, + ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(20-30)% reduced Chill Duration on you" }, } }, + ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9818 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, + ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7929 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9994 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4724 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, + ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2701 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, + ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9853 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, + ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6152 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, + ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7367 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage4"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10666 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "5% reduced Cast Speed" }, } }, + ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7170 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueStrength47"] = { affix = "", "(15-20)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(15-20)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5528, 5529, 5532 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, + ["HandWrapsUniqueIncreasedSkillSpeed1"] = { affix = "", "(13-20)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-20)% increased Attack Speed" }, } }, + ["HandWrapsUniqueMaximumManaIncrease3"] = { affix = "", "Cannot Leech Mana", statOrder = { 2348 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["HandWrapsUniqueIncreasedLife9"] = { affix = "", "(7-9)% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(7-9)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueCriticalMultiplier2"] = { affix = "", "+(1.5-2)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.5-2)% to Critical Hit Chance" }, } }, + ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6079 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, + ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4747 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, + ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10217 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedLife58"] = { affix = "", "(12-15)% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(12-15)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLifeLeech2"] = { affix = "", "Leech (13-17)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (13-17)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10659 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2750 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueStrength41"] = { affix = "", "(18-24)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(18-24)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "Attack Damage with Hits is Lucky while you are Surrounded", statOrder = { 4512 }, level = 1, group = "LuckyAttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1292739266] = { "Attack Damage with Hits is Lucky while you are Surrounded" }, } }, + ["HandWrapsUniqueCriticalMultiplier1"] = { affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage2"] = { affix = "", "Attacks Gain (11-15)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (11-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueOverrideWeaponBaseCritical1"] = { affix = "", "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3253 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(3-6)% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRating4"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueAddedColdDamage1"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (10-15)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsUniqueFreezeDamageIncrease2"] = { affix = "", "All Damage from Hits Contributes to Freeze Buildup", statOrder = { 4260 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage from Hits Contributes to Freeze Buildup" }, } }, + ["HandWrapsUniqueChillEffect1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2612 }, level = 1, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, + ["HandWrapsUniqueColdResist24"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(15-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7917 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "25% more Attack damage while on Low Mana" }, } }, + ["HandWrapsUniqueIncreasedAccuracy4"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsUniqueIntelligence19"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueChaosResist6"] = { affix = "", "+1% to Maximum Chaos Resistance", "+(7-17)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, + ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5633 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5234 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, + ["HandWrapsUniqueLifeRegeneration12"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.5-1.5)% of maximum Life per second" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed3"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Critical Hit chance for Attacks is (25-40)%", statOrder = { 4492 }, level = 1, group = "AttackCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3998836319] = { "Critical Hit chance for Attacks is (25-40)%" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed16"] = { affix = "", "(10-20)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-20)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9200 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, + ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6910 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, + ["HandWrapsUniqueElementalDamageConvertToFire1"] = { affix = "", "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2637, 2637.1 }, level = 1, group = "PhysicalDamageCanFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3268818374] = { "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (6-15)% of Fire damage as Extra Physical damage", statOrder = { 1684 }, level = 1, group = "FireDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2848088738] = { "Gain (6-15)% of Fire damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (6-15)% of Cold damage as Extra Physical damage", statOrder = { 1680 }, level = 1, group = "ColdDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1555320175] = { "Gain (6-15)% of Cold damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (6-15)% of Lightning damage as Extra Physical damage", statOrder = { 1676 }, level = 1, group = "LightningDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2098400428] = { "Gain (6-15)% of Lightning damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueFireResist2"] = { affix = "", "+(2-3)% to Maximum Fire Resistance", "+(15-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["HandWrapsUniqueColdResist1"] = { affix = "", "(30-50)% increased Chill Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% increased Chill Duration on you" }, } }, + ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7244 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, + ["HandWrapsUniqueFireDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (4-7)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsUniqueColdDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (4-7)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsUniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-25)% reduced Attack Speed" }, } }, + ["HandWrapsUniqueSpellDamage1"] = { affix = "", "100% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, + ["HandWrapsUniqueIntelligence18"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1779 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, + ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { affix = "", "All damage with Attacks Contributes to Electrocution Buildup", statOrder = { 4257 }, level = 1, group = "AllAttackDamageElectrocutes", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2132256285] = { "All damage with Attacks Contributes to Electrocution Buildup" }, } }, + ["HandWrapsUniqueIncreasedCastSpeed7"] = { affix = "", "(9-15)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-15)% increased Attack Speed" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(60-80) to maximum Runic Ward", statOrder = { 844 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(60-80) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueIncreasedLife15"] = { affix = "", "+(130-160) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-160) to maximum Life" }, } }, + ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9748 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIntelligence10"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueColdResist30"] = { affix = "", "+2% to Maximum Cold Resistance", "+(20-30)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2019 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, + ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7961 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueCriticalStrikeChance14"] = { affix = "", "(40-60)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Critical Hit Chance" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(15-25)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedMana48"] = { affix = "", "(15-25)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "(15-25)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6265 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, + ["HandWrapsUniqueElementalPenetration1"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["HandWrapsUniqueIncreasedLife10"] = { affix = "", "(6-7)% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-7)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage3"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed2"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6126 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsUniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1773 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5897 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueStrength23"] = { affix = "", "(10-14)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-14)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueLightningResist23"] = { affix = "", "Gain (15-25)% of Lightning damage as Extra Cold damage", statOrder = { 1678 }, level = 1, group = "LightningDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2236478400] = { "Gain (15-25)% of Lightning damage as Extra Cold damage" }, } }, + ["HandWrapsUniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1711 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed11"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6072 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, + ["HandWrapsUniqueIntelligence22"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-25)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed4"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 942, 942.1, 6081 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6935 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, + ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { affix = "", "Enemies you Curse take (20-30)% increased Damage", statOrder = { 3431 }, level = 1, group = "CursedEnemiesDamageTaken", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1984310483] = { "Enemies you Curse take (20-30)% increased Damage" }, } }, + ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { affix = "", "(4-6)% reduced Movement Speed while Cursed", statOrder = { 2399 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "(4-6)% reduced Movement Speed while Cursed" }, } }, + ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5928 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["HandWrapsUniqueIntelligence12"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueFireResist7"] = { affix = "", "+1% to Maximum Fire Resistance", "+(5-15)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, + ["HandWrapsUniqueColdResist9"] = { affix = "", "Gain (10-20)% of Fire damage as Extra Lightning damage", statOrder = { 1683 }, level = 1, group = "FireDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [387148449] = { "Gain (10-20)% of Fire damage as Extra Lightning damage" }, } }, + ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9236 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, + ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7170 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueCannotImmobilise1"] = { affix = "", "Your Hits cannot Stun enemies", statOrder = { 1609 }, level = 1, group = "CannotStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun enemies" }, } }, + ["HandWrapsUniqueLifeRegeneration23"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, + ["HandWrapsUniqueLightningResist28"] = { affix = "", "+(2-3)% to Maximum Lightning Resistance", "+(15-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["HandWrapsUniqueIncreasedLife54"] = { affix = "", "(10-12)% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(10-12)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed1"] = { affix = "", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5806 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, + ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9461 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 844 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(30-50) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueIncreasedLife6"] = { affix = "", "(6-8)% more damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-8)% more damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10475 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, + ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9320 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["HandWrapsUniqueCriticalMultiplier3"] = { affix = "", "+(1-2)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1-2)% to Critical Hit Chance" }, } }, + ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsUniqueLightningResist26"] = { affix = "", "+2% to Maximum Lightning Resistance", "+(25-35)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIntelligence34"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-30)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7962 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed13"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLightningResist29"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(10-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, + ["HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", statOrder = { 3964 }, level = 1, group = "AddedColdDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1247498990] = { "Adds 44 to 66 Cold Damage to Unarmed Melee Hits" }, } }, + ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3253 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["HandWrapsUniqueIncreasedSkillSpeed5"] = { affix = "", "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4556 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5892 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5389, 5389.1, 5389.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "+(70-100) to maximum Runic Ward", statOrder = { 844 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(70-100) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4687 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, + ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10476 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7906 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["HandWrapsUniqueDexterity31"] = { affix = "", "(11-13)% increased Dexterity", statOrder = { 999 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-13)% increased Dexterity" }, } }, + ["HandWrapsUniqueIntelligence31"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, + ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8926 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2321 }, level = 1, group = "AreaOfEffectPer20Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, + ["HandWrapsUniqueChaosResist35"] = { affix = "", "+2% to Maximum Chaos Resistance", "+(17-23)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7950 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed9"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4729 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9171 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["HandWrapsDemigodIncreasedSkillSpeed1"] = { affix = "", "15% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4556 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "15% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", statOrder = { 828 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverrideFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1955786041] = { "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken" }, } }, + ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9267 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, + ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10338 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, + ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7890 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7891 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7892 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7893 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, + ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7894 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains 8 additional Summoning Circles", statOrder = { 8469 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains 8 additional Summoning Circles" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains 10 additional Summoning Circles", statOrder = { 8469 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains 10 additional Summoning Circles" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains 12 additional Summoning Circles", statOrder = { 8469 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains 12 additional Summoning Circles" }, } }, + ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6795 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, + ["UniqueAddedPhysicalDamagePerGlobalBlockChance1"] = { affix = "", "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", statOrder = { 2674 }, level = 1, group = "UniqueAddedPhysicalDamagePerGlobalBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2036307261] = { "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance" }, } }, + ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9382 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, + ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { affix = "", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", "Has +1 to maximum Runic Ward per player level", statOrder = { 841, 843, 846 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [298264758] = { "Has +1 to maximum Runic Ward per player level" }, [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["UniqueMoltenShowerSkill1"] = { affix = "", "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", statOrder = { 480 }, level = 1, group = "UniqueGrantsTriggeredMoltenShower", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1867725690] = { "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength" }, } }, + ["UniqueAddedFireDamageToAttacksPer25Strength"] = { affix = "", "5 to 10 Added Attack Fire Damage per 25 Strength", statOrder = { 1819 }, level = 1, group = "AddedFireDamagePer25Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186798932] = { "5 to 10 Added Attack Fire Damage per 25 Strength" }, } }, + ["UniqueLightningDamageToBleedingEnemiesCanElectrocute1"] = { affix = "", "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", statOrder = { 4273 }, level = 1, group = "LightningDamageToBleedingEnemiesCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2700167617] = { "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup" }, } }, + ["UniqueBleedingInflictedOnShockedEnemiesIsAggravated1"] = { affix = "", "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", statOrder = { 4227 }, level = 1, group = "BleedingInflictedOnShockedEnemiesIsAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2293158400] = { "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated" }, } }, + ["VerisiumSacrificialGarbImplicitLifePerCorruptedItem1"] = { affix = "", "1% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 2823 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "1% increased Maximum Life for each Corrupted Item Equipped" }, } }, + ["VerisiumSacrificialGarbImplicitAllResistancePerCorruptedItem1"] = { affix = "", "+1% to all Resistances for each Corrupted Item Equipped", statOrder = { 2829 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "+1% to all Resistances for each Corrupted Item Equipped" }, } }, + ["VerisiumSacrificialGarbImplicitChaosDamagePerCorruptedItem1"] = { affix = "", "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2825 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(2-4)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, + ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, + ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, + ["EmptyRoarVerisiumBleedDuration1"] = { affix = "", "(20-30)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(20-30)% increased Bleeding Duration" }, } }, + ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, + ["SentryFasterVerisiumImplicitFasterIgnite1"] = { affix = "", "Ignites you inflict deal Damage (30-40)% faster", statOrder = { 2344 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-40)% faster" }, } }, + ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, + ["HyssegsClawVerisiumImplicitMinionDamageUpgraded1"] = { affix = "", "Minions deal (51-100)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-100)% increased Damage" }, } }, + ["KeeperOfTheArcVerisiumImplicit3Sockets1"] = { affix = "", "Has 3 Sockets", statOrder = { 56 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, + ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10478 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, + ["KeeperOfTheArcVerisiumImplicitIntelligenceRequirement1"] = { affix = "", "+250 Intelligence Requirement", statOrder = { 819 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+250 Intelligence Requirement" }, } }, + ["KeeperOfTheArcVerisiumImplicitUnaffectedbyCurses1"] = { affix = "", "100% reduced Duration of Curses on you", statOrder = { 1910 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% reduced Duration of Curses on you" }, } }, + ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6688 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, + ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9641 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, + ["SvalinnVerisiumImplicitManaBeforeLife1"] = { affix = "", "(15-25)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(15-25)% of Damage is taken from Mana before Life" }, } }, + ["OlrovasaraVerisiumImplicitLightningToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1711 }, level = 1, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, + ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9214 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, + ["OlrovasaraVerisiumImplicitWeaponRange1"] = { affix = "", "+(1.5-2) metres to Melee Strike Range", statOrder = { 2312 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+(1.5-2) metres to Melee Strike Range" }, } }, + ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7450 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, + ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10478 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, + ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can can Overflow maximum Runic Ward", statOrder = { 10477 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can can Overflow maximum Runic Ward" }, } }, + ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6865 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, + ["MjolnerVerisiumImplicitLightningDamage1"] = { affix = "", "(40-60)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-60)% increased Lightning Damage" }, } }, + ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7539 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, + ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9853 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, + ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { affix = "", "(200-300)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(200-300)% increased Freeze Buildup" }, } }, + ["TheUnleashedVerisiumImplicitArcaneSurgeEffect1"] = { affix = "", "(30-50)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(30-50)% increased effect of Arcane Surge on you" }, } }, + ["TheUnleashedVerisiumImplicitBypassEnergyShield1"] = { affix = "", "(10-15)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", statOrder = { 1458 }, level = 1, group = "ESBypassWhileBelowHalfES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1311130924] = { "(10-15)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" }, } }, + ["EventidePetalsVerisiumImplicitMaxColdRes1"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, + ["EventidePetalsVerisiumImplicitColdSkills1"] = { affix = "", "+(1-2) to Level of all Cold Skills", statOrder = { 959 }, level = 1, group = "GlobalColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+(1-2) to Level of all Cold Skills" }, } }, + ["EventidePetalsVerisiumImplicitRunicWardPercent1"] = { affix = "", "(15-20)% increased maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalRunicWardPercent", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(15-20)% increased maximum Runic Ward" }, } }, + ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["RuneseekersCallVerisiumImplicitManaRegen1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["RuneseekersCallVerisiumImplicitMaximumRunicWard"] = { affix = "", "+300 to maximum Runic Ward", statOrder = { 889 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+300 to maximum Runic Ward" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10369 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10369 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10369 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, + ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7728 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7725 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7727 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7729 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7730 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7726 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, + ["UniqueMaximumEnergyShieldIsPercentOfStrength1"] = { affix = "", "Your maximum Energy Shield is equal to (200-300)% of your Strength", statOrder = { 1905 }, level = 1, group = "MaximumEnergyShieldIsPercentOfStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [758226825] = { "Your maximum Energy Shield is equal to (200-300)% of your Strength" }, } }, + ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6397 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, + ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7486 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index be0a9674a..0eb481ad5 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -184,198 +184,198 @@ return { ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7757 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7757 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7752 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, - ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "(1-2)% increased Accuracy Rating" }, } }, - ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "(3-7)% increased chance to inflict Ailments" }, } }, - ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "(3-7)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "(2-3)% increased Elemental Ailment Threshold" }, } }, - ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "(2-3)% increased Area of Effect" }, } }, - ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, nodeType = 1, tradeHashes = { [3858398337] = { "(2-3)% increased Armour" }, } }, - ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Break (1-2)% increased Armour" }, } }, - ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "(5-10)% increased Armour Break Duration" }, } }, - ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "(3-7)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "(5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "(1-2)% increased Attack Damage" }, } }, - ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2822644689] = { "(1-2)% increased Attack Speed" }, } }, - ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Aura Skills have (1-3)% increased Magnitudes" }, } }, - ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "(2-3)% increased Damage with Axes" }, } }, - ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "(1-2)% increased Attack Speed with Axes" }, } }, - ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "1% chance to inflict Bleeding on Hit" }, } }, - ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "(3-7)% increased Bleeding Duration" }, } }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "(3-5)% increased Blind Effect" }, } }, - ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "1% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "(1-3)% increased Block chance" }, } }, - ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "(2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "(1-2)% increased Accuracy Rating with Bows" }, } }, - ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "(2-3)% increased Damage with Bows" }, } }, - ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "(1-2)% increased Attack Speed with Bows" }, } }, - ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "(1-2)% increased Cast Speed" }, } }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, - ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "(1-2)% increased Charm Effect Duration" }, } }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "(3-7)% increased Charm Charges gained" }, } }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "(2-3)% increased Damage while you have an active Charm" }, } }, - ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "(1-2)% increased Chaos Damage" }, } }, - ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "(6-12)% increased Chill Duration on Enemies" }, } }, - ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "(1-2)% increased Cold Damage" }, } }, - ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Damage Penetrates (1-2)% Cold Resistance" }, } }, - ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "(1-3)% increased Cooldown Recovery Rate" }, } }, - ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "(2-3)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "(3-7)% increased Critical Hit Chance" }, } }, - ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "(5-10)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "(5-10)% increased Critical Spell Damage Bonus" }, } }, - ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "(2-3)% increased Damage with Crossbows" }, } }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "(5-7)% increased Crossbow Reload Speed" }, } }, - ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "(1-2)% increased Attack Speed with Crossbows" }, } }, - ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "(3-6)% increased Area of Effect of Curses" }, } }, - ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "(2-4)% increased Curse Duration" }, } }, - ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [2770044702] = { "1% increased Curse Magnitudes" }, } }, - ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [4260437915] = { "(3-7)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "(2-3)% increased Damage with Daggers" }, } }, - ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "(1-2)% increased Attack Speed with Daggers" }, } }, - ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "1% of Damage is taken from Mana before Life" }, } }, - ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "(2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "(3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "1% chance to Daze on Hit" }, } }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Debuffs on you expire (3-5)% faster" }, } }, - ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "(1-2)% increased Elemental Damage" }, } }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Empowered Attacks deal (2-3)% increased Damage" }, } }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Meta Skills gain (2-4)% increased Energy" }, } }, - ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "(2-3)% increased maximum Energy Shield" }, } }, - ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "(5-7)% faster start of Energy Shield Recharge" }, } }, - ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "(2-3)% increased Energy Shield Recharge Rate" }, } }, - ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "(2-3)% increased Evasion Rating" }, } }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Damaging Ailments deal damage (2-3)% faster" }, } }, - ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "(1-2)% increased Fire Damage" }, } }, - ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Damage Penetrates (1-2)% Fire Resistance" }, } }, - ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "(3-7)% increased Critical Hit Chance with Flails" }, } }, - ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "(1-2)% increased Damage with Flails" }, } }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "(3-5)% increased Flask Charges gained" }, } }, - ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "(1-2)% increased Flask Effect Duration" }, } }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "(15-25)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, - ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "(5-10)% increased Freeze Buildup" }, } }, - ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "(2-4)% increased Freeze Threshold" }, } }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Herald Skills deal (2-4)% increased Damage" }, } }, - ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "(2-3)% increased Flammability Magnitude" }, } }, - ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "(3-7)% increased Ignite Magnitude" }, } }, - ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "(3-5)% increased Skill Effect Duration" }, } }, - ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "(3-7)% increased Knockback Distance" }, } }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "(2-3)% increased Life Recovery from Flasks" }, } }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "(5-10)% increased Life Flask Charges gained" }, } }, - ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "(2-3)% increased amount of Life Leeched" }, } }, - ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Recover 1% of maximum Life on Kill" }, } }, - ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "1% of Damage taken Recouped as Life" }, } }, - ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [1185341308] = { "(3-5)% increased Life Regeneration rate" }, } }, - ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "(1-2)% increased Lightning Damage" }, } }, - ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Damage Penetrates (1-2)% Lightning Resistance" }, } }, - ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "(1-2)% increased Damage with Maces" }, } }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7918 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "(6-12)% increased Stun Buildup with Maces" }, } }, - ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "(1-2)% increased Mana Recovery from Flasks" }, } }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "(5-10)% increased Mana Flask Charges gained" }, } }, - ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "(1-2)% increased amount of Mana Leeched" }, } }, - ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "(1-2)% increased Mana Regeneration Rate" }, } }, - ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Mark Skills have (2-3)% increased Use Speed" }, } }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, - ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "(2-3)% increased Effect of your Mark Skills" }, } }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "+1 to Maximum Rage" }, } }, - ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "(1-2)% increased Melee Damage" }, } }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "(2-3)% increased Minion Accuracy Rating" }, } }, - ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Minions have (3-5)% increased Area of Effect" }, } }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Minions have (1-2)% increased Attack and Cast Speed" }, } }, - ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Minions have +(1-2)% to Chaos Resistance" }, } }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Minions have (5-10)% increased Critical Hit Chance" }, } }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Minions have (6-12)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Minions deal (1-2)% increased Damage" }, } }, - ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Minions have (1-2)% increased maximum Life" }, } }, - ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Minions have (1-2)% additional Physical Damage Reduction" }, } }, - ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Minions have +(1-2)% to all Elemental Resistances" }, } }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Minions Revive (3-7)% faster" }, } }, - ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "1% increased Movement Speed" }, } }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Offering Skills have (6-12)% increased Duration" }, } }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Offerings have (2-3)% increased Maximum Life" }, } }, - ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "(1-2)% increased Global Physical Damage" }, } }, - ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "(5-10)% chance to Pierce an Enemy" }, } }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "(5-10)% increased Pin Buildup" }, } }, - ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "1% chance to Poison on Hit" }, } }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "(3-7)% increased Magnitude of Poison you inflict" }, } }, - ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "(3-7)% increased Poison Duration" }, } }, - ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "(1-2)% increased Projectile Damage" }, } }, - ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "(2-3)% increased Projectile Speed" }, } }, - ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "(1-2)% increased Damage with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "(5-10)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "(1-2)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "(2-3)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, - ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "(2-3)% increased chance to Shock" }, } }, - ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "(2-3)% increased Shock Duration" }, } }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "(5-7)% increased Magnitude of Shock you inflict" }, } }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "(2-5)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "(1-2)% increased Attack Speed with Spears" }, } }, - ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "(5-10)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "(1-2)% increased Damage with Spears" }, } }, - ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, nodeType = 2, tradeHashes = { [2704905000] = { "(3-7)% increased Critical Hit Chance for Spells" }, } }, - ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "(1-2)% increased Spell Damage" }, } }, - ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "(5-10)% increased Stun Buildup" }, } }, - ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "(1-2)% increased Stun Threshold" }, } }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "(2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "(3-7)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "(1-2)% increased Damage with Swords" }, } }, - ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "(1-2)% increased Attack Speed with Swords" }, } }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "(2-3)% increased Thorns damage" }, } }, - ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "(2-3)% increased Totem Damage" }, } }, - ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "(2-3)% increased Totem Life" }, } }, - ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "(2-3)% increased Totem Placement speed" }, } }, - ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "(1-2)% increased Trap Damage" }, } }, - ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "(2-4)% increased Trap Throwing Speed" }, } }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Triggered Spells deal (2-3)% increased Spell Damage" }, } }, - ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "(1-2)% increased Damage with Unarmed Attacks" }, } }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "(3-7)% increased Warcry Buff Effect" }, } }, - ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "(3-7)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "(2-3)% increased Damage with Warcries" }, } }, - ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "(2-3)% increased Warcry Speed" }, } }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "(2-4)% increased Weapon Swap Speed" }, } }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "(3-5)% increased Withered Magnitude" }, } }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "(1-2)% increased Unarmed Attack Speed" }, } }, - ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "(2-3)% increased Parry Damage" }, } }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "(5-10)% increased Parried Debuff Duration" }, } }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "(8-12)% increased Stun Threshold while Parrying" }, } }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "1% chance to gain Volatility on Kill" }, } }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Companions deal (2-3)% increased Damage" }, } }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Companions have (2-3)% increased maximum Life" }, } }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "(2-3)% increased Hazard Damage" }, } }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "(3-5)% chance for Attack Hits to apply Incision" }, } }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "(8-12)% increased Glory generation for Banner Skills" }, } }, - ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4619 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Banner Skills have (2-3)% increased Area of Effect" }, } }, - ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Banner Skills have (3-4)% increased Duration" }, } }, - ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "(8-12)% increased Presence Area of Effect" }, } }, + ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating" }, } }, + ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments" }, } }, + ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "Small Passive Skills in Radius also grant (2-3)% increased Elemental Ailment Threshold" }, } }, + ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "Notable Passive Skills in Radius also grant (2-3)% increased Area of Effect" }, } }, + ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, nodeType = 1, tradeHashes = { [3858398337] = { "Small Passive Skills in Radius also grant (2-3)% increased Armour" }, } }, + ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Small Passive Skills in Radius also grant Break (1-2)% increased Armour" }, } }, + ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "Notable Passive Skills in Radius also grant (5-10)% increased Armour Break Duration" }, } }, + ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Attacks" }, } }, + ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "Small Passive Skills in Radius also grant (1-2)% increased Attack Damage" }, } }, + ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2822644689] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed" }, } }, + ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Notable Passive Skills in Radius also grant Aura Skills have (1-3)% increased Magnitudes" }, } }, + ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Axes" }, } }, + ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Axes" }, } }, + ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit" }, } }, + ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration" }, } }, + ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, + ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "Notable Passive Skills in Radius also grant (1-3)% increased Block chance" }, } }, + ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, + ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating with Bows" }, } }, + ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Bows" }, } }, + ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Bows" }, } }, + ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "Notable Passive Skills in Radius also grant (1-2)% increased Cast Speed" }, } }, + ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, + ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "Small Passive Skills in Radius also grant (1-2)% increased Charm Effect Duration" }, } }, + ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, + ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, + ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "Small Passive Skills in Radius also grant (1-2)% increased Chaos Damage" }, } }, + ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "Notable Passive Skills in Radius also grant (6-12)% increased Chill Duration on Enemies" }, } }, + ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "Small Passive Skills in Radius also grant (1-2)% increased Cold Damage" }, } }, + ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Cold Resistance" }, } }, + ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate" }, } }, + ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage if you have Consumed a Corpse Recently" }, } }, + ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance" }, } }, + ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Spell Damage Bonus" }, } }, + ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Crossbows" }, } }, + ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, + ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Crossbows" }, } }, + ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "Notable Passive Skills in Radius also grant (3-6)% increased Area of Effect of Curses" }, } }, + ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "Small Passive Skills in Radius also grant (2-4)% increased Curse Duration" }, } }, + ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [2770044702] = { "Notable Passive Skills in Radius also grant 1% increased Curse Magnitudes" }, } }, + ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [4260437915] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Daggers" }, } }, + ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Daggers" }, } }, + ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Daggers" }, } }, + ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, + ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "Small Passive Skills in Radius also grant 1% chance to Daze on Hit" }, } }, + ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, + ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "Small Passive Skills in Radius also grant (1-2)% increased Elemental Damage" }, } }, + ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, + ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, + ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "Small Passive Skills in Radius also grant (2-3)% increased maximum Energy Shield" }, } }, + ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "Notable Passive Skills in Radius also grant (5-7)% faster start of Energy Shield Recharge" }, } }, + ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "Small Passive Skills in Radius also grant (2-3)% increased Energy Shield Recharge Rate" }, } }, + ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "Small Passive Skills in Radius also grant (2-3)% increased Evasion Rating" }, } }, + ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, + ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "Small Passive Skills in Radius also grant (1-2)% increased Fire Damage" }, } }, + ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Fire Resistance" }, } }, + ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Flails" }, } }, + ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Flails" }, } }, + ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, + ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "Small Passive Skills in Radius also grant (1-2)% increased Flask Effect Duration" }, } }, + ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, + ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup" }, } }, + ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "Small Passive Skills in Radius also grant (2-4)% increased Freeze Threshold" }, } }, + ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, + ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "Small Passive Skills in Radius also grant (2-3)% increased Flammability Magnitude" }, } }, + ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "Notable Passive Skills in Radius also grant (3-7)% increased Ignite Magnitude" }, } }, + ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "Notable Passive Skills in Radius also grant (3-5)% increased Skill Effect Duration" }, } }, + ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "Notable Passive Skills in Radius also grant (3-7)% increased Knockback Distance" }, } }, + ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "Small Passive Skills in Radius also grant (2-3)% increased Life Recovery from Flasks" }, } }, + ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, + ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "Small Passive Skills in Radius also grant (2-3)% increased amount of Life Leeched" }, } }, + ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Life on Kill" }, } }, + ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, + ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [1185341308] = { "Notable Passive Skills in Radius also grant (3-5)% increased Life Regeneration rate" }, } }, + ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "Small Passive Skills in Radius also grant (1-2)% increased Lightning Damage" }, } }, + ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Lightning Resistance" }, } }, + ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Maces" }, } }, + ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7918 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, + ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Recovery from Flasks" }, } }, + ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, + ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "Small Passive Skills in Radius also grant (1-2)% increased amount of Mana Leeched" }, } }, + ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Mana on Kill" }, } }, + ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Regeneration Rate" }, } }, + ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Small Passive Skills in Radius also grant Mark Skills have (2-3)% increased Use Speed" }, } }, + ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, + ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "Notable Passive Skills in Radius also grant (2-3)% increased Effect of your Mark Skills" }, } }, + ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, + ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "Small Passive Skills in Radius also grant (1-2)% increased Melee Damage" }, } }, + ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, + ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Notable Passive Skills in Radius also grant Minions have (3-5)% increased Area of Effect" }, } }, + ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, + ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to Chaos Resistance" }, } }, + ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, + ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Small Passive Skills in Radius also grant Minions deal (1-2)% increased Damage" }, } }, + ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Small Passive Skills in Radius also grant Minions have (1-2)% increased maximum Life" }, } }, + ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Small Passive Skills in Radius also grant Minions have (1-2)% additional Physical Damage Reduction" }, } }, + ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to all Elemental Resistances" }, } }, + ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, + ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "Notable Passive Skills in Radius also grant 1% increased Movement Speed" }, } }, + ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, + ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, + ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "Small Passive Skills in Radius also grant (1-2)% increased Global Physical Damage" }, } }, + ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "Notable Passive Skills in Radius also grant (5-10)% chance to Pierce an Enemy" }, } }, + ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, + ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "Small Passive Skills in Radius also grant 1% chance to Poison on Hit" }, } }, + ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, + ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "Notable Passive Skills in Radius also grant (3-7)% increased Poison Duration" }, } }, + ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "Small Passive Skills in Radius also grant (1-2)% increased Projectile Damage" }, } }, + ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "Notable Passive Skills in Radius also grant (2-3)% increased Projectile Speed" }, } }, + ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Quarterstaves" }, } }, + ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, + ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "Small Passive Skills in Radius also grant (2-3)% increased chance to Shock" }, } }, + ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "Small Passive Skills in Radius also grant (2-3)% increased Shock Duration" }, } }, + ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, + ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Spears" }, } }, + ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus with Spears" }, } }, + ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Spears" }, } }, + ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, nodeType = 2, tradeHashes = { [2704905000] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Spells" }, } }, + ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "Small Passive Skills in Radius also grant (1-2)% increased Spell Damage" }, } }, + ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "Notable Passive Skills in Radius also grant (5-10)% increased Stun Buildup" }, } }, + ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "Small Passive Skills in Radius also grant (1-2)% increased Stun Threshold" }, } }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, + ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, + ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Swords" }, } }, + ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Swords" }, } }, + ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, + ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Damage" }, } }, + ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Life" }, } }, + ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Placement speed" }, } }, + ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "Small Passive Skills in Radius also grant (1-2)% increased Trap Damage" }, } }, + ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "Notable Passive Skills in Radius also grant (2-4)% increased Trap Throwing Speed" }, } }, + ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, + ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Unarmed Attacks" }, } }, + ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, + ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Cooldown Recovery Rate" }, } }, + ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, + ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "Small Passive Skills in Radius also grant (2-3)% increased Warcry Speed" }, } }, + ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, + ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, + ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, + ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, + ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, + ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, + ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, + ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, + ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, + ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, + ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, + ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, + ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4619 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect" }, } }, + ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration" }, } }, + ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7762, 7762.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7763, 7763.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7761, 7761.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7783 }, level = 1, group = "LocalPrefixEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7784 }, level = 1, group = "LocalSuffixEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, - ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "+(5-7)% to Fire Resistance" }, } }, - ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "+(5-7)% to Cold Resistance" }, } }, - ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "+(5-7)% to Lightning Resistance" }, } }, - ["CraftedJewelRadiusChaosResistance"] = { type = "Suffix", affix = "", "+(4-5)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [248192092] = { "+(4-5)% to Chaos Resistance" }, } }, + ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "Notable Passive Skills in Radius also grant +(5-7)% to Fire Resistance" }, } }, + ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "Notable Passive Skills in Radius also grant +(5-7)% to Cold Resistance" }, } }, + ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "Notable Passive Skills in Radius also grant +(5-7)% to Lightning Resistance" }, } }, + ["CraftedJewelRadiusChaosResistance"] = { type = "Suffix", affix = "", "+(4-5)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [248192092] = { "Notable Passive Skills in Radius also grant +(4-5)% to Chaos Resistance" }, } }, ["CraftedJewelMaximumChaosResistance"] = { type = "Suffix", affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 1, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, ["CraftedJewelAdditionalPrefixAllowed"] = { type = "Suffix", affix = "", "+1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, ["CraftedJewelAdditionalSuffixAllowed"] = { type = "Prefix", affix = "", "+1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4318 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [541021467] = { "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" }, } }, ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { type = "Suffix", affix = "", "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", statOrder = { 4315 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3587953142] = { "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" }, } }, ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { type = "Suffix", affix = "", "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", statOrder = { 4319 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [2951965588] = { "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9875 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "(1-2)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5948 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "(1-2)% increased Damage while Shapeshifted" }, } }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9445 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "(1-2)% increased Damage with Plant Skills" }, } }, + ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9875 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5948 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, + ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9445 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9875 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5948 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9445 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index ba3d72221..659d7f810 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -93,18 +93,18 @@ return { ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(3-4)% to all Elemental Resistances" }, } }, ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "1% of Damage taken Recouped as Life" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [85367160] = { "1% of Damage taken Recouped as Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 893 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2589572664] = { "1% increased maximum Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 888 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [160888068] = { "1% increased maximum Life" }, } }, - ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "evasion", "energy_shield" }, nodeType = 2, tradeHashes = { [2783157569] = { "(2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "1% of Damage is taken from Mana before Life" }, } }, - ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3566150527] = { "Regenerate (0.03-0.07)% of maximum Life per second" }, } }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "(2-3)% increased Mana Cost Efficiency" }, } }, - ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2855 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "critical" }, nodeType = 2, tradeHashes = { [2135541924] = { "Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6870 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Mana Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6869 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Life Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6866 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Charms gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [85367160] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Mana" }, } }, + ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 893 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2589572664] = { "Notable Passive Skills in Radius also grant 1% increased maximum Mana" }, } }, + ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 888 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [160888068] = { "Notable Passive Skills in Radius also grant 1% increased maximum Life" }, } }, + ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "evasion", "energy_shield" }, nodeType = 2, tradeHashes = { [2783157569] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, + ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3566150527] = { "Notable Passive Skills in Radius also grant Regenerate (0.03-0.07)% of maximum Life per second" }, } }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, + ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2855 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "critical" }, nodeType = 2, tradeHashes = { [2135541924] = { "Notable Passive Skills in Radius also grant Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6870 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6869 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6866 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 870, 881 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "armour", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 870, 883 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "evasion", "damage", "caster" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2974417149] = { "(4-8)% increased Spell Damage" }, } }, ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 870, 885 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "energy_shield", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index b4ce141b7..22656102c 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -9,15080 +9,29349 @@ return { ["AllocatesXEnchant"] = { + ["10029"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "enchant", + }, + }, + ["10169"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10169", + ["text"] = "Allocates Unfettered", + ["type"] = "enchant", + }, + }, + ["10265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "enchant", + }, + }, + ["10295"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "enchant", + }, + }, + ["10315"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "enchant", + }, + }, + ["10398"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "enchant", + }, + }, + ["10423"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "enchant", + }, + }, + ["10499"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", + ["type"] = "enchant", + }, + }, + ["10500"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", + ["type"] = "enchant", + }, + }, + ["10602"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "enchant", + }, + }, + ["10612"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "enchant", + }, + }, + ["10681"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "enchant", + }, + }, + ["10727"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "enchant", + }, + }, + ["10772"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", + ["type"] = "enchant", + }, + }, + ["10774"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", + ["type"] = "enchant", + }, + }, + ["1087"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", + ["type"] = "enchant", + }, + }, + ["10873"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "enchant", + }, + }, + ["10998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "enchant", + }, + }, + ["1104"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "enchant", + }, + }, + ["11184"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11184", + ["text"] = "Allocates Zarokh's Gift", + ["type"] = "enchant", + }, + }, + ["11366"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "enchant", + }, + }, + ["11376"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "enchant", + }, + }, + ["11392"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "enchant", + }, + }, + ["11526"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "enchant", + }, + }, + ["11578"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "enchant", + }, + }, + ["116"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "enchant", + }, + }, ["1169"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "enchant", + }, + }, ["11774"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "enchant", + }, + }, ["11826"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "enchant", + }, + }, + ["11838"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "enchant", + }, + }, + ["11886"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "enchant", + }, + }, + ["12245"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "enchant", + }, + }, + ["12337"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "enchant", + }, + }, + ["12412"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "enchant", + }, + }, + ["12611"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "enchant", + }, + }, + ["12661"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "enchant", + }, + }, + ["12750"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "enchant", + }, + }, + ["12822"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "enchant", + }, + }, + ["12906"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "enchant", + }, + }, + ["12964"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "enchant", + }, + }, + ["12998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "enchant", + }, + }, + ["13407"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "enchant", + }, + }, + ["13457"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "enchant", + }, + }, ["13482"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "enchant", + }, + }, + ["13489"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "enchant", + }, + }, + ["13515"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "enchant", + }, + }, + ["1352"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "enchant", + }, + }, + ["13524"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "enchant", + }, + }, + ["13542"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "enchant", + }, + }, + ["13708"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "enchant", + }, + }, + ["13724"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "enchant", + }, + }, + ["13738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "enchant", + }, + }, + ["13823"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "enchant", + }, + }, ["13844"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|13844", - ["text"] = "Allocates Growing Peril", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "enchant", + }, + }, + ["13895"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "enchant", + }, + }, + ["13980"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "enchant", + }, + }, + ["1420"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "enchant", + }, + }, + ["14211"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "enchant", + }, + }, + ["14258"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + }, ["14294"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "enchant", + }, + }, + ["14324"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "enchant", + }, + }, + ["14343"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "enchant", + }, + }, ["14383"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "enchant", + }, + }, + ["1448"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|1448", + ["text"] = "Allocates Bond of the Cat", + ["type"] = "enchant", + }, + }, ["14602"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "enchant", + }, + }, ["14761"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "enchant", + }, + }, + ["14777"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "enchant", + }, + }, + ["14934"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "enchant", + }, + }, + ["14945"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "enchant", + }, + }, + ["1502"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "enchant", + }, + }, + ["15030"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "enchant", + }, + }, + ["1506"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "enchant", + }, + }, + ["15083"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "enchant", + }, + }, + ["15114"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "enchant", + }, + }, + ["15374"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "enchant", + }, + }, + ["15443"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "enchant", + }, + }, + ["1546"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "enchant", + }, + }, + ["15606"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "enchant", + }, + }, + ["15617"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "enchant", + }, + }, + ["15644"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "enchant", + }, + }, + ["15825"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15825", + ["text"] = "Allocates Bhatair's Storm", + ["type"] = "enchant", + }, + }, + ["15829"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "enchant", + }, + }, + ["15986"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "enchant", + }, + }, + ["15991"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "enchant", + }, + }, + ["1603"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "enchant", + }, + }, + ["16142"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "enchant", + }, + }, + ["16150"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "enchant", + }, + }, + ["16256"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "enchant", + }, + }, + ["16466"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "enchant", + }, + }, + ["16499"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "enchant", + }, + }, + ["16618"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "enchant", + }, + }, + ["16626"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "enchant", + }, + }, + ["16790"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "enchant", + }, + }, + ["16816"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "enchant", + }, + }, ["16940"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", - ["type"] = "crafted", - }, - }, - ["17229"] = { + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "enchant", + }, + }, + ["17029"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", - ["type"] = "crafted", - }, - }, - ["17854"] = { + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "enchant", + }, + }, + ["17150"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "enchant", + }, + }, + ["17229"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "enchant", + }, + }, + ["17254"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "enchant", + }, + }, + ["17260"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "enchant", + }, + }, + ["17303"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "enchant", + }, + }, + ["17330"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "enchant", + }, + }, + ["17340"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "enchant", + }, + }, + ["17372"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "enchant", + }, + }, + ["17548"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "enchant", + }, + }, + ["17600"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "enchant", + }, + }, + ["17664"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "enchant", + }, + }, + ["17696"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", + ["type"] = "enchant", + }, + }, + ["17725"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "enchant", + }, + }, + ["17762"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "enchant", + }, + }, + ["17825"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "enchant", + }, + }, + ["17854"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "enchant", + }, + }, + ["17882"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "enchant", + }, + }, + ["17955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "enchant", + }, + }, + ["18086"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "enchant", + }, + }, + ["18157"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "enchant", + }, + }, + ["1823"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "enchant", + }, + }, + ["18308"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "enchant", + }, + }, + ["18397"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "enchant", + }, + }, + ["18419"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "enchant", + }, + }, + ["18485"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "enchant", + }, + }, + ["18496"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "enchant", + }, + }, + ["18505"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "enchant", + }, + }, + ["1861"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1861", + ["text"] = "Allocates Knight of Tarcus", + ["type"] = "enchant", + }, + }, + ["18959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "enchant", + }, + }, + ["19044"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "enchant", + }, + }, ["19125"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "enchant", + }, + }, + ["19156"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "enchant", + }, + }, + ["19236"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "enchant", + }, + }, + ["19249"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "enchant", + }, + }, + ["19337"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "enchant", + }, + }, + ["19442"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "enchant", + }, + }, + ["19546"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "enchant", + }, + }, + ["19644"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "enchant", + }, + }, ["19715"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|19715", - ["text"] = "Allocates Cremation", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "enchant", + }, + }, + ["19722"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "enchant", + }, + }, + ["19955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "enchant", + }, + }, + ["20008"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "enchant", + }, + }, + ["20032"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "enchant", + }, + }, + ["2021"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "enchant", + }, + }, + ["20251"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "enchant", + }, + }, + ["20289"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "enchant", + }, + }, + ["20388"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "enchant", + }, + }, + ["20397"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "enchant", + }, + }, + ["20414"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "enchant", + }, + }, + ["20416"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "enchant", + }, + }, ["20495"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|20495", - ["text"] = "Allocates Dark Entropy", - ["type"] = "crafted", - }, - }, - ["20686"] = { + ["id"] = "enchant.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "enchant", + }, + }, + ["20511"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "enchant", + }, + }, + ["20558"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "enchant", + }, + }, + ["20677"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|20686", - ["text"] = "Allocates Paragon", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "enchant", + }, + }, + ["20686"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "enchant", + }, + }, + ["20916"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "enchant", + }, + }, + ["2113"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "enchant", + }, + }, + ["21164"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "enchant", + }, + }, + ["21206"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "enchant", + }, + }, + ["21213"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21213", + ["text"] = "Allocates Cirel of Tarth's Light", + ["type"] = "enchant", + }, + }, + ["21251"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21251", + ["text"] = "Allocates Replenishing Horde", + ["type"] = "enchant", + }, + }, + ["2134"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "enchant", + }, + }, + ["21349"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "enchant", + }, + }, + ["2138"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "enchant", + }, + }, + ["21380"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "enchant", + }, + }, + ["21453"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "enchant", + }, + }, + ["21537"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "enchant", + }, + }, + ["21748"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "enchant", + }, + }, + ["21784"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "enchant", + }, + }, + ["22532"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "enchant", + }, + }, + ["22626"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "enchant", + }, + }, + ["22726"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22726", + ["text"] = "Allocates Storm's Rebuke", + ["type"] = "enchant", + }, + }, + ["22811"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "enchant", + }, + }, + ["22817"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "enchant", + }, + }, + ["22864"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "enchant", + }, + }, + ["22967"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "enchant", + }, + }, + ["23078"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "enchant", + }, + }, + ["23221"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "enchant", + }, + }, + ["23227"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "enchant", + }, + }, + ["23244"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "enchant", + }, + }, + ["2335"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "enchant", + }, + }, + ["23362"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "enchant", + }, + }, ["23427"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", - ["type"] = "crafted", - }, - }, - ["23738"] = { + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "enchant", + }, + }, + ["2344"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", - ["type"] = "crafted", - }, - }, - ["24120"] = { + ["id"] = "enchant.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "enchant", + }, + }, + ["23630"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "enchant", + }, + }, + ["23736"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "enchant", + }, + }, + ["23738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "enchant", + }, + }, + ["23764"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "enchant", + }, + }, + ["23939"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "enchant", + }, + }, + ["2394"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "enchant", + }, + }, + ["23940"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "enchant", + }, + }, + ["2397"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "enchant", + }, + }, + ["24062"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "enchant", + }, + }, + ["24087"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "enchant", + }, + }, + ["24120"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "enchant", + }, + }, + ["24240"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "enchant", + }, + }, + ["24438"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "enchant", + }, + }, + ["24483"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "enchant", + }, + }, + ["24491"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "enchant", + }, + }, + ["24630"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "enchant", + }, + }, + ["24655"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "enchant", + }, + }, + ["24736"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24736", + ["text"] = "Allocates Knight of Chitus", + ["type"] = "enchant", + }, + }, + ["24753"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "enchant", + }, + }, + ["24764"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "enchant", + }, + }, + ["24766"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "enchant", + }, + }, + ["2486"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "enchant", + }, + }, + ["2511"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "enchant", + }, + }, + ["25211"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "enchant", + }, + }, + ["25361"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25361", + ["text"] = "Allocates Resolute Reach", + ["type"] = "enchant", + }, + }, + ["25362"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "enchant", + }, + }, + ["25482"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "enchant", + }, + }, + ["25513"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "enchant", + }, + }, + ["25619"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "enchant", + }, + }, + ["25620"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "enchant", + }, + }, + ["25711"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "enchant", + }, + }, + ["2575"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "enchant", + }, + }, + ["25753"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "enchant", + }, + }, + ["25971"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "enchant", + }, + }, + ["26070"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "enchant", + }, + }, + ["261"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "enchant", + }, + }, + ["26104"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "enchant", + }, + }, + ["26107"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "enchant", + }, + }, ["26214"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|26214", - ["text"] = "Allocates Dominion", - ["type"] = "crafted", - }, - }, - ["26339"] = { + ["id"] = "enchant.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "enchant", + }, + }, + ["26291"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", - ["type"] = "crafted", - }, - }, - ["2745"] = { + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "enchant", + }, + }, + ["26331"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "enchant", + }, + }, + ["26339"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "enchant", + }, + }, + ["26356"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "enchant", + }, + }, + ["26447"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "enchant", + }, + }, + ["2645"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "enchant", + }, + }, + ["26479"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "enchant", + }, + }, + ["26518"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "enchant", + }, + }, + ["26563"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "enchant", + }, + }, + ["26926"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26926", + ["text"] = "Allocates Archon of Undeath", + ["type"] = "enchant", + }, + }, + ["27009"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "enchant", + }, + }, + ["27108"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "enchant", + }, + }, + ["27176"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "enchant", + }, + }, + ["27303"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "enchant", + }, + }, + ["27388"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "enchant", + }, + }, + ["27434"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "enchant", + }, + }, + ["2745"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "enchant", + }, + }, + ["27491"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "enchant", + }, + }, + ["27513"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "enchant", + }, + }, + ["27626"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "enchant", + }, + }, + ["27687"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "enchant", + }, + }, + ["27704"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27704", + ["text"] = "Allocates Grace of the Ancestors", + ["type"] = "enchant", + }, + }, ["27761"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "enchant", + }, + }, + ["27779"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", + ["type"] = "enchant", + }, + }, + ["27875"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "enchant", + }, + }, + ["27950"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "enchant", + }, + }, + ["28044"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "enchant", + }, + }, + ["2814"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "enchant", + }, + }, + ["28267"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "enchant", + }, + }, + ["28329"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "enchant", + }, + }, + ["28408"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "enchant", + }, + }, + ["2843"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "enchant", + }, + }, + ["28441"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "enchant", + }, + }, + ["28482"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "enchant", + }, + }, + ["28542"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "enchant", + }, + }, + ["28613"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "enchant", + }, + }, + ["2863"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "enchant", + }, + }, + ["28892"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "enchant", + }, + }, + ["28963"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "enchant", + }, + }, + ["28975"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "enchant", + }, + }, + ["29288"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "enchant", + }, + }, + ["29306"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "enchant", + }, + }, + ["29372"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "enchant", + }, + }, + ["29514"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "enchant", + }, + }, + ["29527"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "enchant", + }, + }, + ["29762"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "enchant", + }, + }, + ["29800"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "enchant", + }, + }, + ["29881"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "enchant", + }, + }, + ["29899"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "enchant", + }, + }, + ["2999"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "enchant", + }, + }, + ["30132"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "enchant", + }, + }, + ["30341"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "enchant", + }, + }, + ["30392"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "enchant", + }, + }, ["30395"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "enchant", + }, + }, + ["30408"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "enchant", + }, + }, + ["30456"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "enchant", + }, + }, + ["30523"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "enchant", + }, + }, + ["30546"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "enchant", + }, + }, ["30562"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "enchant", + }, + }, + ["30720"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "enchant", + }, + }, + ["30748"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "enchant", + }, + }, + ["31129"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "enchant", + }, + }, + ["31172"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "enchant", + }, + }, + ["31175"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "enchant", + }, + }, + ["31189"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "enchant", + }, + }, + ["31326"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "enchant", + }, + }, + ["31364"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "enchant", + }, + }, ["31373"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "enchant", + }, + }, + ["31433"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "enchant", + }, + }, + ["31724"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "enchant", + }, + }, + ["31745"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "enchant", + }, + }, + ["31773"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "enchant", + }, + }, + ["31826"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "enchant", + }, + }, + ["3188"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "enchant", + }, + }, + ["31925"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "enchant", + }, + }, + ["31955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31955", + ["text"] = "Allocates Voll's Protection", + ["type"] = "enchant", + }, + }, + ["32071"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "enchant", + }, + }, ["32128"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|32128", - ["text"] = "Allocates Flow of Time", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "enchant", + }, + }, + ["3215"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "enchant", + }, + }, + ["32151"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "enchant", + }, + }, + ["32301"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "enchant", + }, + }, + ["32353"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "enchant", + }, + }, + ["32354"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "enchant", + }, + }, + ["32448"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "enchant", + }, + }, + ["32507"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "enchant", + }, + }, + ["32543"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "enchant", + }, + }, + ["32655"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "enchant", + }, + }, + ["32664"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "enchant", + }, + }, + ["32721"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "enchant", + }, + }, + ["32799"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "enchant", + }, + }, + ["32858"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "enchant", + }, + }, + ["32932"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "enchant", + }, + }, + ["32951"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "enchant", + }, + }, + ["32976"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "enchant", + }, + }, + ["33059"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "enchant", + }, + }, + ["33093"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "enchant", + }, + }, + ["33099"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "enchant", + }, + }, + ["33216"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "enchant", + }, + }, + ["33229"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "enchant", + }, + }, + ["33240"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "enchant", + }, + }, + ["33400"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33400", + ["text"] = "Allocates Reverberating Parry", + ["type"] = "enchant", + }, + }, + ["3348"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "enchant", + }, + }, + ["33542"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "enchant", + }, + }, + ["33585"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "enchant", + }, + }, + ["336"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "enchant", + }, + }, + ["33730"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "enchant", + }, + }, + ["338"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "enchant", + }, + }, + ["33887"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "enchant", + }, + }, + ["33922"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "enchant", + }, + }, + ["33978"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "enchant", + }, + }, + ["34300"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "enchant", + }, + }, + ["34308"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "enchant", + }, + }, + ["34316"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "enchant", + }, + }, ["34324"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "enchant", + }, + }, + ["34340"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "enchant", + }, + }, + ["34425"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "enchant", + }, + }, + ["34473"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "enchant", + }, + }, + ["34478"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34478", + ["text"] = "Allocates Bond of the Viper", + ["type"] = "enchant", + }, + }, ["34531"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "enchant", + }, + }, + ["34541"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "enchant", + }, + }, + ["34543"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "enchant", + }, + }, + ["34553"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "enchant", + }, + }, + ["34617"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", + ["type"] = "enchant", + }, + }, + ["34908"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "enchant", + }, + }, + ["3492"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "enchant", + }, + }, + ["35028"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "enchant", + }, + }, + ["35031"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "enchant", + }, + }, + ["35046"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35046", + ["text"] = "Allocates Mystic Avalanche", + ["type"] = "enchant", + }, + }, + ["35324"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "enchant", + }, + }, + ["35369"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "enchant", + }, + }, + ["35417"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "enchant", + }, + }, + ["35477"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "enchant", + }, + }, + ["35560"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "enchant", + }, + }, + ["35564"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "enchant", + }, + }, + ["35581"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "enchant", + }, + }, + ["35618"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "enchant", + }, + }, + ["3567"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "enchant", + }, + }, + ["35739"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "enchant", + }, + }, + ["35743"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35743", + ["text"] = "Allocates Saqawal's Hide", + ["type"] = "enchant", + }, + }, + ["35792"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "enchant", + }, + }, ["35809"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "enchant", + }, + }, ["35849"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "enchant", + }, + }, + ["35855"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "enchant", + }, + }, + ["35876"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "enchant", + }, + }, + ["35918"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "enchant", + }, + }, + ["35966"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "enchant", + }, + }, ["36085"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "enchant", + }, + }, + ["36100"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "enchant", + }, + }, + ["36333"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "enchant", + }, + }, + ["36341"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "enchant", + }, + }, + ["36364"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "enchant", + }, + }, + ["36507"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "enchant", + }, + }, + ["36623"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "enchant", + }, + }, + ["3663"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3663", + ["text"] = "Allocates Kaom's Blessing", + ["type"] = "enchant", + }, + }, + ["36630"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "enchant", + }, + }, + ["36808"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "enchant", + }, + }, + ["3688"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "enchant", + }, + }, + ["36931"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "enchant", + }, + }, + ["36976"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "enchant", + }, + }, + ["3698"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "enchant", + }, + }, + ["372"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "enchant", + }, + }, + ["37244"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "enchant", + }, + }, + ["37266"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "enchant", + }, + }, + ["37276"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "enchant", + }, + }, + ["37302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "enchant", + }, + }, + ["37408"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "enchant", + }, + }, + ["37514"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "enchant", + }, + }, ["37543"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "enchant", + }, + }, ["37742"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "enchant", + }, + }, + ["37806"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "enchant", + }, + }, + ["37846"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37846", + ["text"] = "Allocates Bastion of Light", + ["type"] = "enchant", + }, + }, + ["37872"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "enchant", + }, + }, + ["37967"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37967", + ["text"] = "Allocates Desert's Scorn", + ["type"] = "enchant", + }, + }, + ["38053"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "enchant", + }, + }, + ["38111"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "enchant", + }, + }, + ["38329"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "enchant", + }, + }, + ["38342"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "enchant", + }, + }, + ["38398"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "enchant", + }, + }, + ["38459"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "enchant", + }, + }, + ["38479"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "enchant", + }, + }, ["38532"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", - ["type"] = "crafted", - }, - }, - ["38537"] = { + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "enchant", + }, + }, + ["38535"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "enchant", + }, + }, + ["38537"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "enchant", + }, + }, + ["38570"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "enchant", + }, + }, + ["38614"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "enchant", + }, + }, + ["38628"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "enchant", + }, + }, + ["38888"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "enchant", + }, + }, + ["38895"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "enchant", + }, + }, ["3894"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "enchant", + }, + }, + ["38965"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "enchant", + }, + }, + ["38969"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "enchant", + }, + }, + ["38972"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "enchant", + }, + }, + ["39050"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "enchant", + }, + }, + ["39083"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "enchant", + }, + }, ["3921"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "enchant", + }, + }, + ["39347"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "enchant", + }, + }, + ["39369"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "enchant", + }, + }, + ["39567"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "enchant", + }, + }, + ["39568"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "enchant", + }, + }, + ["3985"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "enchant", + }, + }, + ["39881"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "enchant", + }, + }, + ["39884"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "enchant", + }, + }, + ["39911"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", + ["type"] = "enchant", + }, + }, + ["39990"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "enchant", + }, + }, + ["40073"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "enchant", + }, + }, + ["40117"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "enchant", + }, + }, + ["40166"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "enchant", + }, + }, + ["40213"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "enchant", + }, + }, + ["40270"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "enchant", + }, + }, + ["40292"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "enchant", + }, + }, + ["4031"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "enchant", + }, + }, + ["40325"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "enchant", + }, + }, + ["40345"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "enchant", + }, + }, + ["40399"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "enchant", + }, + }, + ["40480"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "enchant", + }, + }, + ["40687"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "enchant", + }, + }, + ["40803"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "enchant", + }, + }, + ["4091"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "enchant", + }, + }, + ["40985"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "enchant", + }, + }, + ["40990"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "enchant", + }, + }, ["41033"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "enchant", + }, + }, ["41394"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "enchant", + }, + }, + ["41512"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "enchant", + }, + }, + ["41580"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "enchant", + }, + }, + ["41620"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "enchant", + }, + }, + ["41753"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "enchant", + }, + }, + ["41811"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "enchant", + }, + }, + ["41905"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "enchant", + }, + }, + ["41935"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "enchant", + }, + }, + ["41972"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "enchant", + }, + }, + ["42032"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "enchant", + }, + }, + ["42036"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "enchant", + }, + }, + ["42045"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "enchant", + }, + }, + ["42065"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "enchant", + }, + }, + ["42070"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "enchant", + }, + }, + ["42077"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "enchant", + }, + }, + ["42103"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "enchant", + }, + }, ["42177"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "enchant", + }, + }, ["42245"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "enchant", + }, + }, + ["42302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "enchant", + }, + }, + ["42347"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "enchant", + }, + }, + ["42354"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "enchant", + }, + }, ["4238"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "enchant", + }, + }, + ["42390"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "enchant", + }, + }, ["42660"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "enchant", + }, + }, ["42714"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "enchant", + }, + }, + ["42760"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "enchant", + }, + }, + ["42813"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "enchant", + }, + }, + ["4295"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "enchant", + }, + }, + ["42959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "enchant", + }, + }, + ["42981"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "enchant", + }, + }, + ["43082"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "enchant", + }, + }, + ["43088"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "enchant", + }, + }, + ["43090"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "enchant", + }, + }, + ["43139"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "enchant", + }, + }, + ["43250"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "enchant", + }, + }, + ["4331"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "enchant", + }, + }, + ["43396"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "enchant", + }, + }, + ["43423"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "enchant", + }, + }, + ["43584"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "enchant", + }, + }, + ["43633"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "enchant", + }, + }, + ["43677"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "enchant", + }, + }, + ["43711"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "enchant", + }, + }, + ["43791"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "enchant", + }, + }, + ["43829"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "enchant", + }, + }, + ["43854"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "enchant", + }, + }, + ["43939"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "enchant", + }, + }, + ["43944"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "enchant", + }, + }, ["44005"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "enchant", + }, + }, ["44293"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "enchant", + }, + }, + ["44299"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "enchant", + }, + }, + ["44330"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "enchant", + }, + }, + ["44373"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "enchant", + }, + }, + ["4447"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "enchant", + }, + }, + ["44566"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "enchant", + }, + }, + ["44573"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44573", + ["text"] = "Allocates Disciplined Training", + ["type"] = "enchant", + }, + }, + ["44753"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "enchant", + }, + }, + ["44756"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "enchant", + }, + }, + ["44765"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "enchant", + }, + }, + ["44917"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "enchant", + }, + }, + ["44952"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "enchant", + }, + }, + ["44974"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "enchant", + }, + }, + ["45013"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "enchant", + }, + }, ["45177"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|45177", - ["text"] = "Allocates Strike True", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "enchant", + }, + }, + ["45244"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "enchant", + }, + }, + ["45329"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "enchant", + }, + }, + ["4534"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "enchant", + }, + }, + ["45370"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "enchant", + }, + }, ["4544"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "enchant", + }, + }, ["4547"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", - ["type"] = "crafted", - }, - }, - ["45612"] = { + ["id"] = "enchant.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "enchant", + }, + }, + ["45488"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "enchant", + }, + }, + ["45599"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "enchant", + }, + }, + ["45612"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "enchant", + }, + }, + ["45632"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "enchant", + }, + }, + ["45713"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "enchant", + }, + }, + ["45751"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "enchant", + }, + }, + ["45777"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "enchant", + }, + }, + ["4579"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "enchant", + }, + }, + ["45874"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "enchant", + }, + }, + ["46024"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "enchant", + }, + }, + ["46060"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "enchant", + }, + }, + ["46124"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "enchant", + }, + }, + ["46182"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "enchant", + }, + }, + ["46197"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "enchant", + }, + }, + ["46224"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "enchant", + }, + }, + ["4627"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "enchant", + }, + }, + ["46296"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "enchant", + }, + }, + ["46365"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "enchant", + }, + }, + ["46384"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "enchant", + }, + }, + ["46499"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "enchant", + }, + }, ["4661"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "enchant", + }, + }, ["46683"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "enchant", + }, + }, + ["46692"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "enchant", + }, + }, + ["46696"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "enchant", + }, + }, + ["4673"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "enchant", + }, + }, + ["46972"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "enchant", + }, + }, + ["47088"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "enchant", + }, + }, + ["4709"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "enchant", + }, + }, + ["4716"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "enchant", + }, + }, + ["47270"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "enchant", + }, + }, + ["47316"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "enchant", + }, + }, ["47363"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "enchant", + }, + }, + ["47418"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "enchant", + }, + }, + ["47420"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "enchant", + }, + }, + ["47441"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "enchant", + }, + }, + ["47514"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "enchant", + }, + }, + ["47560"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "enchant", + }, + }, + ["47635"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "enchant", + }, + }, + ["47782"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "enchant", + }, + }, + ["47853"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47853", + ["text"] = "Allocates Bond of the Mamba", + ["type"] = "enchant", + }, + }, + ["48006"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "enchant", + }, + }, + ["48014"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "enchant", + }, + }, + ["4810"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "enchant", + }, + }, + ["48103"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "enchant", + }, + }, + ["48215"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "enchant", + }, + }, + ["48240"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "enchant", + }, + }, + ["48418"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "enchant", + }, + }, + ["48524"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "enchant", + }, + }, + ["48565"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "enchant", + }, + }, + ["48581"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "enchant", + }, + }, ["48617"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|48617", - ["text"] = "Allocates Hunter", - ["type"] = "crafted", - }, - }, - ["48699"] = { + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "enchant", + }, + }, + ["48649"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", - ["type"] = "crafted", - }, - }, - ["49550"] = { + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "enchant", + }, + }, + ["48658"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "enchant", + }, + }, + ["48699"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "enchant", + }, + }, + ["48734"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "enchant", + }, + }, + ["48774"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "enchant", + }, + }, + ["48925"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "enchant", + }, + }, + ["48974"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "enchant", + }, + }, + ["49088"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "enchant", + }, + }, + ["49150"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "enchant", + }, + }, + ["49214"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "enchant", + }, + }, + ["4931"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "enchant", + }, + }, + ["49356"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49356", + ["text"] = "Allocates First Principle of the Hollow", + ["type"] = "enchant", + }, + }, + ["49550"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "enchant", + }, + }, + ["4959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "enchant", + }, + }, + ["49618"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "enchant", + }, + }, + ["49661"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "enchant", + }, + }, + ["49740"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "enchant", + }, + }, + ["4985"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "enchant", + }, + }, + ["49984"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "enchant", + }, + }, + ["50023"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "enchant", + }, + }, + ["50062"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "enchant", + }, + }, + ["5009"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "enchant", + }, + }, + ["50239"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50239", + ["text"] = "Allocates Mutewind Agility", + ["type"] = "enchant", + }, + }, + ["50253"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "enchant", + }, + }, + ["50392"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "enchant", + }, + }, + ["50485"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "enchant", + }, + }, + ["50562"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "enchant", + }, + }, + ["50673"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "enchant", + }, + }, ["50687"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "enchant", + }, + }, + ["50715"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "enchant", + }, + }, + ["50795"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "enchant", + }, + }, + ["50884"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "enchant", + }, + }, + ["50912"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "enchant", + }, + }, + ["51105"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "enchant", + }, + }, + ["51129"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "enchant", + }, + }, + ["51169"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "enchant", + }, + }, ["51213"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51213", - ["text"] = "Allocates Wasting", - ["type"] = "crafted", - }, - }, - ["51602"] = { + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "enchant", + }, + }, + ["51394"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51602", - ["text"] = "Allocates Unsight", - ["type"] = "crafted", - }, - }, - ["51868"] = { + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "enchant", + }, + }, + ["51446"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", - ["type"] = "crafted", - }, - }, - ["52199"] = { + ["id"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "enchant", + }, + }, + ["51509"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "enchant", + }, + }, + ["51602"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "enchant", + }, + }, + ["51606"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "enchant", + }, + }, + ["51707"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "enchant", + }, + }, + ["51820"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "enchant", + }, + }, + ["51867"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "enchant", + }, + }, + ["51868"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "enchant", + }, + }, + ["51871"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "enchant", + }, + }, + ["51891"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "enchant", + }, + }, + ["5191"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5191", + ["text"] = "Allocates Bond of the Wolf", + ["type"] = "enchant", + }, + }, + ["51934"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "enchant", + }, + }, + ["52180"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "enchant", + }, + }, + ["52191"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "enchant", + }, + }, + ["52199"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "enchant", + }, + }, + ["52229"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "enchant", + }, + }, + ["52245"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "enchant", + }, + }, + ["52257"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "enchant", + }, + }, + ["5227"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "enchant", + }, + }, + ["52348"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "enchant", + }, + }, + ["52392"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "enchant", + }, + }, + ["52568"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52568", + ["text"] = "Allocates Bond of the Owl", + ["type"] = "enchant", + }, + }, + ["5257"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "enchant", + }, + }, ["52618"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "enchant", + }, + }, + ["52684"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "enchant", + }, + }, ["52764"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "enchant", + }, + }, ["52803"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", - ["type"] = "crafted", - }, - }, - ["52971"] = { + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "enchant", + }, + }, + ["5284"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "enchant", + }, + }, + ["52971"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "enchant", + }, + }, + ["53030"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "enchant", + }, + }, + ["53131"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "enchant", + }, + }, + ["53150"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "enchant", + }, + }, + ["53185"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "enchant", + }, + }, + ["53187"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "enchant", + }, + }, + ["53265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "enchant", + }, + }, + ["53294"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "enchant", + }, + }, + ["5332"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "enchant", + }, + }, + ["5335"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "enchant", + }, + }, + ["53367"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "enchant", + }, + }, + ["53527"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "enchant", + }, + }, + ["53566"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "enchant", + }, + }, + ["53607"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "enchant", + }, + }, + ["53683"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "enchant", + }, + }, + ["53823"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "enchant", + }, + }, + ["53853"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "enchant", + }, + }, + ["53921"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "enchant", + }, + }, + ["53935"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "enchant", + }, + }, + ["53941"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "enchant", + }, + }, + ["54031"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "enchant", + }, + }, + ["5410"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "enchant", + }, + }, + ["54148"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "enchant", + }, + }, + ["54640"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "enchant", + }, + }, + ["54805"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "enchant", + }, + }, + ["54814"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "enchant", + }, + }, + ["54911"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "enchant", + }, + }, + ["54937"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "enchant", + }, + }, + ["54990"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "enchant", + }, + }, + ["54998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "enchant", + }, + }, + ["55"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "enchant", + }, + }, + ["55060"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "enchant", + }, + }, + ["55131"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "enchant", + }, + }, + ["55149"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "enchant", + }, + }, + ["55180"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "enchant", + }, + }, + ["55193"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "enchant", + }, + }, ["55308"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "enchant", + }, + }, + ["55375"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "enchant", + }, + }, + ["55450"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "enchant", + }, + }, + ["55568"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "enchant", + }, + }, + ["55708"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "enchant", + }, + }, + ["5580"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "enchant", + }, + }, + ["55817"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "enchant", + }, + }, + ["55835"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "enchant", + }, + }, + ["55847"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "enchant", + }, + }, + ["5594"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "enchant", + }, + }, + ["56016"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "enchant", + }, + }, + ["56063"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "enchant", + }, + }, + ["56112"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "enchant", + }, + }, + ["56237"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "enchant", + }, + }, + ["56265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "enchant", + }, + }, + ["56388"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "enchant", + }, + }, + ["5642"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "enchant", + }, + }, + ["56453"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "enchant", + }, + }, + ["56488"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "enchant", + }, + }, + ["56493"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "enchant", + }, + }, ["56616"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "enchant", + }, + }, + ["5663"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "enchant", + }, + }, + ["56666"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56666", + ["text"] = "Allocates Thaumaturgic Generator", + ["type"] = "enchant", + }, + }, + ["56714"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "enchant", + }, + }, + ["56767"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "enchant", + }, + }, + ["56776"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "enchant", + }, + }, ["56806"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", - ["type"] = "crafted", - }, - }, - ["56860"] = { + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "enchant", + }, + }, + ["5686"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "enchant", + }, + }, + ["56860"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "enchant", + }, + }, + ["56893"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "enchant", + }, + }, + ["56988"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "enchant", + }, + }, + ["56997"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "enchant", + }, + }, + ["56999"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "enchant", + }, + }, + ["5703"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "enchant", + }, + }, + ["57047"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "enchant", + }, + }, + ["57110"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "enchant", + }, + }, + ["57190"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "enchant", + }, + }, + ["57204"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "enchant", + }, + }, + ["5728"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "enchant", + }, + }, + ["57379"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "enchant", + }, + }, + ["57388"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "enchant", + }, + }, + ["57471"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "enchant", + }, + }, ["57617"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "enchant", + }, + }, ["57785"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "enchant", + }, + }, + ["57805"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "enchant", + }, + }, + ["57921"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "enchant", + }, + }, + ["58016"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "enchant", + }, + }, + ["5802"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "enchant", + }, + }, + ["58096"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "enchant", + }, + }, + ["58183"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "enchant", + }, + }, + ["58198"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "enchant", + }, + }, + ["58215"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "enchant", + }, + }, + ["58397"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "enchant", + }, + }, + ["58426"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "enchant", + }, + }, + ["58714"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "enchant", + }, + }, + ["58817"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "enchant", + }, + }, + ["58894"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", + ["type"] = "enchant", + }, + }, + ["58939"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "enchant", + }, + }, + ["59070"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "enchant", + }, + }, + ["59208"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "enchant", + }, + }, + ["59214"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "enchant", + }, + }, + ["59303"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "enchant", + }, + }, + ["59387"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "enchant", + }, + }, + ["59433"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "enchant", + }, + }, + ["59438"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59438", + ["text"] = "Allocates Flow of Life", + ["type"] = "enchant", + }, + }, + ["59541"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "enchant", + }, + }, + ["59589"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "enchant", + }, + }, + ["59657"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59657", + ["text"] = "Allocates First Teachings of the Keeper", + ["type"] = "enchant", + }, + }, + ["59720"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "enchant", + }, + }, + ["59781"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59781", + ["text"] = "Allocates Embodiment of Death", + ["type"] = "enchant", + }, + }, + ["59938"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "enchant", + }, + }, ["60034"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "enchant", + }, + }, + ["60083"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "enchant", + }, + }, + ["60138"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "enchant", + }, + }, + ["60269"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "enchant", + }, + }, + ["60273"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "enchant", + }, + }, + ["60404"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "enchant", + }, + }, ["60464"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "enchant", + }, + }, + ["60619"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "enchant", + }, + }, + ["60692"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "enchant", + }, + }, + ["60764"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "enchant", + }, + }, + ["60992"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "enchant", + }, + }, + ["61026"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "enchant", + }, + }, + ["61104"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "enchant", + }, + }, ["61112"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "enchant", + }, + }, + ["61309"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61309", + ["text"] = "Allocates Redblade Discipline", + ["type"] = "enchant", + }, + }, + ["6133"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "enchant", + }, + }, + ["61338"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "enchant", + }, + }, + ["61354"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "enchant", + }, + }, + ["61404"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "enchant", + }, + }, + ["61444"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "enchant", + }, + }, ["61601"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61601", - ["text"] = "Allocates True Strike", - ["type"] = "crafted", - }, - }, - ["61921"] = { + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "enchant", + }, + }, + ["61703"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", - ["type"] = "crafted", - }, - }, - ["6304"] = { + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "enchant", + }, + }, + ["61741"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", - ["type"] = "crafted", - }, - }, - ["64050"] = { + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "enchant", + }, + }, + ["6178"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "enchant", + }, + }, + ["61921"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "enchant", + }, + }, + ["62034"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "enchant", + }, + }, + ["62185"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "enchant", + }, + }, + ["62210"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62210", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + }, + ["62230"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "enchant", + }, + }, + ["62237"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62237", + ["text"] = "Allocates Saqawal's Talon", + ["type"] = "enchant", + }, + }, + ["6229"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "enchant", + }, + }, + ["62310"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "enchant", + }, + }, + ["62431"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62431", + ["text"] = "Allocates Anticipation", + ["type"] = "enchant", + }, + }, + ["62455"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "enchant", + }, + }, + ["62609"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "enchant", + }, + }, + ["62803"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "enchant", + }, + }, + ["62887"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "enchant", + }, + }, + ["62963"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "enchant", + }, + }, + ["63031"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "enchant", + }, + }, + ["63037"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "enchant", + }, + }, + ["6304"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "enchant", + }, + }, + ["63074"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "enchant", + }, + }, + ["63255"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "enchant", + }, + }, + ["63400"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "enchant", + }, + }, + ["63431"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "enchant", + }, + }, + ["63451"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "enchant", + }, + }, + ["63541"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "enchant", + }, + }, + ["63579"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "enchant", + }, + }, + ["63585"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "enchant", + }, + }, + ["63739"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "enchant", + }, + }, + ["63759"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "enchant", + }, + }, + ["63830"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "enchant", + }, + }, + ["64050"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "enchant", + }, + }, + ["64119"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "enchant", + }, + }, + ["64240"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "enchant", + }, + }, + ["64415"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "enchant", + }, + }, + ["64443"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "enchant", + }, + }, + ["64525"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "enchant", + }, + }, + ["64543"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "enchant", + }, + }, + ["64650"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "enchant", + }, + }, + ["64659"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "enchant", + }, + }, + ["64770"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64770", + ["text"] = "Allocates Morgana, the Storm Seer", + ["type"] = "enchant", + }, + }, + ["64851"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "enchant", + }, + }, + ["65016"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "enchant", + }, + }, + ["65023"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "enchant", + }, + }, + ["6514"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "enchant", + }, + }, + ["65160"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "enchant", + }, + }, + ["65193"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "enchant", + }, + }, ["65204"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", - ["type"] = "crafted", - }, - }, - ["65256"] = { + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "enchant", + }, + }, + ["65243"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "enchant", + }, + }, + ["65256"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "enchant", + }, + }, + ["65265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "enchant", + }, + }, + ["6544"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "enchant", + }, + }, + ["65468"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "enchant", + }, + }, + ["6655"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "enchant", + }, + }, + ["7062"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "enchant", + }, + }, + ["712"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|712", + ["text"] = "Allocates Bond of the Ape", + ["type"] = "enchant", + }, + }, + ["7128"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "enchant", + }, + }, + ["7163"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "enchant", + }, + }, + ["7275"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "enchant", + }, + }, + ["7302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "enchant", + }, + }, + ["7338"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "enchant", + }, + }, + ["7341"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "enchant", + }, + }, + ["7395"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "enchant", + }, + }, + ["7449"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "enchant", + }, + }, + ["750"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "enchant", + }, + }, + ["7542"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "enchant", + }, + }, + ["7604"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "enchant", + }, + }, + ["7651"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "enchant", + }, + }, + ["7668"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "enchant", + }, + }, + ["7777"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "enchant", + }, + }, + ["7782"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "enchant", + }, + }, ["7809"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "enchant", + }, + }, + ["7847"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "enchant", + }, + }, + ["8273"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "enchant", + }, + }, + ["8397"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "enchant", + }, + }, + ["8483"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "enchant", + }, + }, + ["8531"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "enchant", + }, + }, + ["8554"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "enchant", + }, + }, + ["8607"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "enchant", + }, + }, + ["8660"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "enchant", + }, + }, + ["8782"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "enchant", + }, + }, + ["8791"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "enchant", + }, + }, + ["8810"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "enchant", + }, + }, + ["8827"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "enchant", + }, + }, ["8831"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", - ["type"] = "crafted", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "enchant", + }, + }, + ["8881"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "enchant", + }, + }, + ["8896"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "enchant", + }, + }, + ["8904"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "enchant", + }, + }, + ["8916"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "enchant", + }, + }, + ["8957"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "enchant", + }, + }, + ["9009"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "enchant", + }, + }, + ["9020"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "enchant", + }, + }, + ["9187"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "enchant", + }, + }, ["9226"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", - ["type"] = "crafted", - }, - }, - ["9290"] = { + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "enchant", + }, + }, + ["9227"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "enchant", + }, + }, + ["9290"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "enchant", + }, + }, + ["9323"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "enchant", + }, + }, + ["9328"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "enchant", + }, + }, + ["934"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "enchant", + }, + }, + ["94"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "enchant", + }, + }, + ["9421"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "enchant", + }, + }, + ["9444"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "enchant", + }, + }, + ["9472"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "enchant", + }, + }, ["9535"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9535", - ["text"] = "Allocates Brinerot Ferocity", - ["type"] = "crafted", - }, - }, - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "enchant", + }, + }, + ["9652"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "enchant", + }, + }, + ["9736"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "enchant", + }, + }, + ["9863"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", + ["type"] = "enchant", + }, + }, + ["9896"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "enchant", + }, + }, + ["9908"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "enchant", + }, + }, + ["9928"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "enchant", + }, + }, + ["9968"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "enchant", + }, + }, + }, ["Corrupted"] = { ["1004011302"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + }, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["101878827"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + }, ["1037193709"] = { ["1HMace"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["max"] = 15.5, + ["min"] = 10.5, + }, ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["max"] = 15.5, + ["min"] = 10.5, + }, ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, + ["max"] = 21.5, + ["min"] = 14.5, + }, ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, - }, + ["max"] = 21.5, + ["min"] = 10.5, + }, ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["max"] = 15.5, + ["min"] = 10.5, + }, ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, + ["max"] = 21.5, + ["min"] = 14.5, + }, ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["max"] = 15.5, + ["min"] = 10.5, + }, ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, + ["max"] = 21.5, + ["min"] = 14.5, + }, ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["max"] = 15.5, + ["min"] = 10.5, + }, ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, + ["max"] = 21.5, + ["min"] = 14.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", + }, + }, ["1050105434"] = { ["Focus"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["1062208444"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "enchant", + }, + }, + ["1102738251"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, ["124859000"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "enchant", + }, + }, + ["1315743832"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + }, ["1316278494"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + }, + ["1368271171"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "enchant", + }, + }, + ["1436284579"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", + }, + }, ["1444556985"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + }, ["1509134228"] = { ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + }, + ["1515657623"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1519615863"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + }, + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1658498488"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", + }, + }, ["1671376347"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1725749947"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", + }, + }, + ["1776411443"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", + }, + }, + ["1782086450"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + }, ["1798257884"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + }, + ["185580205"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "enchant", + }, + }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", + }, + }, + ["1978899297"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", + }, + }, ["1999113824"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", + }, + }, ["210067635"] = { ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Crossbow"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Flail"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Spear"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["Talisman"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 8, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + }, ["2106365538"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", + }, + }, + ["2122183138"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + }, + ["2154246560"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + }, ["2162097452"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["2200293569"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, ["2223678961"] = { ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, + ["max"] = 20.5, + ["min"] = 13.5, + }, ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, - }, + ["max"] = 20.5, + ["min"] = 9.5, + }, ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, + ["max"] = 20.5, + ["min"] = 13.5, + }, ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, + ["max"] = 20.5, + ["min"] = 13.5, + }, ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, + ["max"] = 14.5, + ["min"] = 9.5, + }, ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, + ["max"] = 20.5, + ["min"] = 13.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", + }, + }, ["2250533757"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["227523295"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["2301191210"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", + }, + }, + ["2321178454"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "enchant", + }, + }, + ["2353576063"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", + }, + }, ["2451402625"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "enchant", + }, + }, + ["2481353198"] = { ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", + }, + }, ["2482852589"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", + }, + }, + ["2557965901"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "enchant", + }, + }, + ["2653955271"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + }, + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["2763429652"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", + }, + }, ["280731498"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + }, ["2866361420"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", + }, + }, ["2891184298"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "crafted", - }, - }, - ["2923486259"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["Chest"] = { - ["max"] = 19, - ["min"] = 13, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["2974417149"] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + }, + ["289128254"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", + }, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["2923486259"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + }, + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + }, + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, ["Focus"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 40, - }, + ["max"] = 60, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + }, + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, ["3175163625"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + }, + ["3233599707"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + }, ["3261801346"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["328541901"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3299347043"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3321629045"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + }, ["3336890334"] = { ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, - }, + ["max"] = 22.5, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, - }, + ["max"] = 22.5, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, - }, + ["max"] = 32, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, - }, + ["max"] = 22.5, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, - }, + ["max"] = 32, + ["min"] = 21, + }, ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, - }, + ["max"] = 22.5, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, - }, + ["max"] = 32, + ["min"] = 21, + }, ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, - }, + ["max"] = 22.5, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, - }, + ["max"] = 32, + ["min"] = 21, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + }, ["3372524247"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3377888098"] = { ["specialCaseData"] = { - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", + }, + }, + ["3398787959"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + }, + ["3417711605"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + }, + ["3429557654"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + }, ["3556824919"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, + ["3639275092"] = { + ["1HMace"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["1HWeapon"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["2HMace"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["2HWeapon"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Boots"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Bow"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Chest"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Crossbow"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Flail"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Focus"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Gloves"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Helmet"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Quarterstaff"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Sceptre"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Shield"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Spear"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Staff"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Talisman"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Wand"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", + }, + }, + ["3650992555"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", + }, + }, + ["3676141501"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3695891184"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", + }, + }, + ["3771516363"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", + }, + }, + ["3780644166"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "enchant", + }, + }, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", + }, + }, + ["3885405204"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", + }, + }, + ["3885634897"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", + }, + }, ["3917489142"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + }, ["3981240776"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", + }, + }, ["4015621042"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Focus"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "crafted", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", + }, + }, + ["4078695"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4080418644"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["4081947835"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "enchant", + }, + }, ["4095671657"] = { ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4220027924"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["4236566306"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", + }, + }, + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["44972811"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", + }, + }, + ["472520716"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + }, + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", + }, + }, + ["480796730"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["548198834"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", + }, + }, + ["591105508"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["680068163"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "enchant", + }, + }, + ["707457662"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + }, ["709508406"] = { ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, - }, + ["max"] = 25.5, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["Flail"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["Spear"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "crafted", - }, - }, + ["max"] = 25.5, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", + }, + }, + ["721014846"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", + }, + }, ["737908626"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", + }, + }, + ["762600725"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + }, ["789117908"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", + }, + }, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "crafted", - }, - }, + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", + }, + }, ["803737631"] = { ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, - }, + ["max"] = 100, + ["min"] = 50, + }, ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 100, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["818778753"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", + }, + }, + ["836936635"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + }, + ["9187492"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["924253255"] = { ["Boots"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "crafted", - }, - }, - }, + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", + }, + }, + ["970213192"] = { + ["Quiver"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", + }, + }, + }, ["Enchant"] = { - }, + }, ["Explicit"] = { ["1002362373"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1002535626"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002535626", - ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + }, ["1004011302"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["1007380041"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", + }, + }, ["1011760251"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1014398896"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1014398896", - ["text"] = "#% increased Spell Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, ["101878827"] = { ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, - }, + ["max"] = 80, + ["min"] = 36, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, - }, + ["max"] = 80, + ["min"] = 36, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", + }, + }, ["1022759479"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1028592286"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "explicit", + }, + }, ["1030153674"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + }, ["1037193709"] = { ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["max"] = 102, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["max"] = 102, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, - }, + ["max"] = 156.5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, - }, + ["max"] = 156.5, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["max"] = 102, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, - }, + ["max"] = 156.5, + ["min"] = 3, + }, ["Flail"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["max"] = 102, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 156.5, - ["min"] = 3, - }, + ["max"] = 156.5, + ["min"] = 3, + }, ["Spear"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["max"] = 102, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 156.5, - ["min"] = 3, - }, + ["max"] = 156.5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, ["1039268420"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + }, ["1045789614"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1045789614", - ["text"] = "#% increased Critical Hit Chance against Marked Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "explicit", + }, + }, ["1049080093"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1049080093", - ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["1050105434"] = { ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, - }, + ["max"] = 164, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, - }, + ["max"] = 328, + ["min"] = 20, + }, ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, - }, + ["max"] = 189, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 124, - ["min"] = 10, - }, + ["max"] = 124, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 124, - ["min"] = 10, - }, + ["max"] = 124, + ["min"] = 10, + }, ["Focus"] = { - ["max"] = 164, - ["min"] = 6, - }, + ["max"] = 164, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, - }, + ["max"] = 124, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 149, - ["min"] = 6, - }, + ["max"] = 149, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 179, - ["min"] = 10, - }, + ["max"] = 179, + ["min"] = 10, + }, ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, - }, + ["max"] = 164, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 328, - ["min"] = 20, - }, + ["max"] = 328, + ["min"] = 20, + }, ["Wand"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 164, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1058934731"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1058934731", - ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1060572482"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + }, ["1062208444"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, ["1062710370"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, ["1087108135"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", + }, + }, ["1087531620"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, ["1102738251"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["1104825894"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + }, ["111835965"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + }, ["1120862500"] = { ["Charm"] = { - ["max"] = 300, - ["min"] = 16, - }, + ["max"] = 300, + ["min"] = 16, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", + }, + }, ["1129429646"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, ["1135928777"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, ["1137305356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1145481685"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["1158842087"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1158842087", - ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["1160637284"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, ["1165163804"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, ["1166140625"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, ["1177404658"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, ["1180552088"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1180552088", - ["text"] = "#% increased effect of Archon Buffs on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "explicit", + }, + }, ["1181419800"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", + }, + }, ["1181501418"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1185341308"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, ["1200678966"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, ["1202301673"] = { ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 4, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1238227257"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, ["124131830"] = { ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, - }, + ["max"] = 6, + ["min"] = 2, + }, ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Focus"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 2, - }, + ["max"] = 6, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 4, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1241625305"] = { ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, ["124859000"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, ["1250712710"] = { ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["1261982764"] = { ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["max"] = 100, + ["min"] = 61, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, ["1263695895"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["1265767008"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1265767008", - ["text"] = "Your Minions are Gigantic if they have Revived Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "explicit", + }, + }, ["1266413530"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, ["127081978"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, ["1285594161"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + }, ["1301765461"] = { ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1303248024"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + }, ["1309799717"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1310194496"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1315743832"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", + }, + }, ["1316278494"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + }, ["1320662475"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + }, ["1321054058"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321054058", - ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "explicit", + }, + }, ["1321104829"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + }, ["1323216174"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", - ["type"] = "explicit", - }, - }, + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, + ["1335369947"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["1337740333"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1347539079"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1347539079", - ["text"] = "#% Surpassing chance to fire an additional Projectile", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1352561456"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, ["1366840608"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", + ["type"] = "explicit", + }, + }, ["1368271171"] = { ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, + ["max"] = 27, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 27, - ["min"] = 2, - }, + ["max"] = 27, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Staff"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["Wand"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["max"] = 45, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + }, ["1379411836"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, + ["max"] = 24, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 13, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 13, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["138421180"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, ["1389754388"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, + ["max"] = 33, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, ["139889694"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1405298142"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, ["1412217137"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, ["1416406066"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1416406066", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, ["1417267954"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, ["1423639565"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1426522529"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", + }, + }, ["1432756708"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["1443502073"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1443502073", - ["text"] = "#% increased Effect of Prefixes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "explicit", + }, + }, ["1444556985"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, + ["max"] = 24, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["145581225"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_145581225", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, ["1459321413"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["147764878"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + }, ["1484026495"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1484026495", - ["text"] = "+# maximum stacks of Puppet Master", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1484500028"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1484500028", - ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["1485480327"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1485480327", - ["text"] = "Minions have #% increased Immobilisation buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", + ["type"] = "explicit", + }, + }, ["1488650448"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1488650448", - ["text"] = "# to Ailment Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1493485657"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1493485657", - ["text"] = "Spells have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["1494950893"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1495814176"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, ["1505023559"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, ["1509134228"] = { ["1HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 179, - ["min"] = 15, - }, + ["max"] = 179, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1509533589"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509533589", - ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", + ["type"] = "explicit", + }, + }, ["1514844108"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, ["1526933524"] = { ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, ["153777645"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, ["1544773869"] = { ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 4, - }, + ["max"] = 40, + ["min"] = 4, + }, ["Crossbow"] = { - ["max"] = 40, - ["min"] = 4, - }, + ["max"] = 40, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1544773869", - ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "explicit", + }, + }, ["1545858329"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1552666713"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["1568848828"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1568848828", - ["text"] = "Recover # Runic Ward when you Block", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "explicit", + }, + }, ["1569101201"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1569159338"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", + }, + }, ["1570501432"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", + }, + }, ["1570770415"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", + }, + }, ["1573130764"] = { ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["max"] = 37, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["max"] = 37, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["max"] = 37, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + }, ["1574590649"] = { ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["max"] = 25.5, + ["min"] = 2, + }, ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["max"] = 25.5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", + }, + }, ["1585769763"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + }, ["1589917703"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1590846356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, ["1594812856"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, ["1600707273"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1602294220"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", + }, + }, ["1604736568"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + }, ["1615901249"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "explicit", + }, + }, ["1617268696"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1617268696", - ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing atenth of their maximum Life as Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1617268696", + ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing atenth of their maximum Life as Fire Damage", + ["type"] = "explicit", + }, + }, ["1653682082"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["1671376347"] = { ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1687542781"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1691403182"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["1692879867"] = { ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", - ["type"] = "explicit", - }, - }, + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "explicit", + }, + }, ["1697447343"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, ["1697951953"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", + }, + }, ["169946467"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + }, ["1714971114"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + }, ["1718147982"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, ["173226756"] = { ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, + ["max"] = 70, + ["min"] = 41, + }, ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, + ["max"] = 70, + ["min"] = 41, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, ["1742651309"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 26, - }, + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["174664100"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1754445556"] = { ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, + ["max"] = 37.5, + ["min"] = 2.5, + }, ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, + ["max"] = 37.5, + ["min"] = 2.5, + }, ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, + ["max"] = 37.5, + ["min"] = 2.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", + }, + }, ["1756380435"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - ["type"] = "explicit", - }, - }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1772247089"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + }, ["1773308808"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, ["1776411443"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", + }, + }, ["1776945532"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776945532", - ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1776945532", + ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["type"] = "explicit", + }, + }, ["1777421941"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1782086450"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, ["179541474"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, ["1797815732"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1797815732", - ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1798257884"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["1800303440"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + }, ["1805182458"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["1805633363"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "explicit", + }, + }, ["1811130680"] = { ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["max"] = 100, + ["min"] = 61, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, ["1823942939"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1823942939", - ["text"] = "# to maximum number of Summoned Ballista Totems", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1829102168"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["1834658952"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, ["1836676211"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, ["1839076647"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1840985759"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", + }, + }, ["1846980580"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", - ["type"] = "explicit", - }, - }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1852184471"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", + }, + }, ["1852872083"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + }, ["1854213750"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, ["185580205"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_185580205", - ["text"] = "Charms gain # charge per Second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", + }, + }, ["1869147066"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, ["1873752457"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", + }, + }, ["1874553720"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + }, ["1881230714"] = { ["Bow"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["One Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["One Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["One Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Two Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Two Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Two Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + }, ["1892122971"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, ["1896066427"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["1911237468"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, ["1940865751"] = { ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, + ["max"] = 52.5, + ["min"] = 2.5, + }, ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, + ["max"] = 52.5, + ["min"] = 2.5, + }, ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, + ["max"] = 74.5, + ["min"] = 3.5, + }, ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, - }, + ["max"] = 74.5, + ["min"] = 2.5, + }, ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, + ["max"] = 52.5, + ["min"] = 2.5, + }, ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, + ["max"] = 74.5, + ["min"] = 3.5, + }, ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, + ["max"] = 52.5, + ["min"] = 2.5, + }, ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, + ["max"] = 74.5, + ["min"] = 3.5, + }, ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, + ["max"] = 52.5, + ["min"] = 2.5, + }, ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, + ["max"] = 74.5, + ["min"] = 3.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + }, ["1944020877"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + }, ["195270549"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_195270549", - ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "explicit", + }, + }, ["1967040409"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["1967051901"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + }, ["1972391381"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1972391381", - ["text"] = "#% increased Explicit Resistance Modifier magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["1978899297"] = { ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1980802737"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "explicit", + }, + }, ["1992191903"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1992191903", - ["text"] = "# to Level of all Mark Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1994296038"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1998951374"] = { ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["1999113824"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, + ["max"] = 110, + ["min"] = 101, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, ["2011656677"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["2023107756"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + }, ["2039822488"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2056107438"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["2066964205"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, ["2074866941"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2074866941", - ["text"] = "#% increased Exposure Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", + }, + }, ["2077117738"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["2081918629"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "explicit", + }, + }, ["2083058281"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2083058281", - ["text"] = "Enemies you Mark take #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "explicit", + }, + }, ["210067635"] = { ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 19, - ["min"] = 5, - }, + ["max"] = 19, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, - }, + ["max"] = 19, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["max"] = 28, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["2101383955"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + }, ["2103650854"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "explicit", + }, + }, ["2106365538"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["21071013"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["2107703111"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, ["2108821127"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", + }, + }, ["2112395885"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", + }, + }, ["2118708619"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, ["2122183138"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + }, ["2131720304"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, ["2144192055"] = { ["Ring"] = { - ["max"] = 233, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 233, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2149603090"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["2150661403"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2150661403", - ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2150661403", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["type"] = "explicit", + }, + }, ["2158617060"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", + }, + }, ["2160282525"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, ["2162097452"] = { ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Sceptre"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 4, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2174054121"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["2189073790"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2189073790", - ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["2194114101"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, ["2200293569"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["2202308025"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + }, ["221701169"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", + }, + }, ["2222186378"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["2223678961"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "explicit", + }, + }, ["2231156303"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["max"] = 30, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["2250533757"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 35, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["2250681686"] = { ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250681686", - ["text"] = "Grenade Skills have +# Cooldown Use", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2254480358"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2256120736"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, ["2272980012"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["2301718443"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, + ["231689132"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_231689132", + ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["2319832234"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2319832234", - ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["type"] = "explicit", + }, + }, ["2320654813"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, ["2321178454"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, - }, + ["max"] = 26, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + }, ["2334956771"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, ["2339757871"] = { ["Boots"] = { - ["max"] = 19, - ["min"] = 16, - }, + ["max"] = 19, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 27, - ["min"] = 16, - }, + ["max"] = 27, + ["min"] = 16, + }, ["Focus"] = { - ["max"] = 27, - ["min"] = 16, - }, + ["max"] = 27, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 19, - ["min"] = 16, - }, + ["max"] = 19, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 19, - ["min"] = 16, - }, + ["max"] = 19, + ["min"] = 16, + }, ["Shield"] = { - ["max"] = 27, - ["min"] = 16, - }, + ["max"] = 27, + ["min"] = 16, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["234296660"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["2347036682"] = { ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, + ["max"] = 30.5, + ["min"] = 2, + }, ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, - }, + ["max"] = 30.5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + }, ["2353576063"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, ["2359002191"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, ["2365392475"] = { ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, + ["max"] = 350, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", + }, + }, ["2374711847"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, ["2392260628"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", + }, + }, ["2392824305"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, ["239367161"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["2416650879"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", + ["type"] = "explicit", + }, + }, ["2416869319"] = { ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, + ["max"] = 80, + ["min"] = 51, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, ["2421151933"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2421151933", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["2440073079"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, ["2442527254"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["2451402625"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, ["2456226238"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456226238", - ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + }, ["2456523742"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, ["2463230181"] = { ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, - }, + ["max"] = 200, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 200, - ["min"] = 25, - }, + ["max"] = 200, + ["min"] = 25, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 60, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2466785537"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, ["2475221757"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2475221757", - ["text"] = "#% increased Effect of Suffixes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "explicit", + }, + }, ["2480498143"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, ["2481353198"] = { ["Shield"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", + }, + }, ["2482852589"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["2487305362"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, ["2503377690"] = { ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, ["2505884597"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["2518900926"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, ["2523933828"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + }, ["2527686725"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, ["2534359663"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["253641217"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, ["2541588185"] = { ["Charm"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 16, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", + }, + }, ["2557965901"] = { ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 7.9, - ["min"] = 6, - }, + ["max"] = 7.9, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + }, ["255840549"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", + }, + }, ["2567751411"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["2580617872"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, + ["AnyJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["RadiusJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, ["258119672"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_258119672", - ["text"] = "# metre to Dodge Roll distance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2582079000"] = { ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, + ["overrideModLinePlural"] = "+# Charm Slots", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2594634307"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["2610562860"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["262946222"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_262946222", - ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "explicit", + }, + }, ["2637470878"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, ["2638756573"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["2639966148"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + }, ["2653231923"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653231923", - ["text"] = "#% increased Mana Cost Efficiency of Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", + }, + }, ["2653955271"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["266564538"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, ["2672805335"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["2675129731"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, ["2676834156"] = { ["Charm"] = { - ["max"] = 500, - ["min"] = 44, - }, + ["max"] = 500, + ["min"] = 44, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + }, ["2690740379"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, ["2694482655"] = { ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2696027455"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", + }, + }, ["2704225257"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704225257", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2704905000"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, ["2709367754"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, ["2709646369"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, ["2714890129"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2714890129", - ["text"] = "Life Leech can Overflow Maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", + ["type"] = "explicit", + }, + }, ["2720982137"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, ["2723294374"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2723294374", - ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["type"] = "explicit", + }, + }, ["2726713579"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + }, ["274716455"] = { ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, + ["max"] = 59, + ["min"] = 15, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, + ["max"] = 34, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 15, - }, + ["max"] = 59, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, ["2748665614"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["2749595652"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2749595652", - ["text"] = "#% chance for Skills to retain 40% of Glory on use", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "explicit", + }, + }, ["2768835289"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + }, ["2768899959"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + }, ["2770044702"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, ["2797971005"] = { ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, ["280731498"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["2809428780"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + }, ["2822644689"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["2839066308"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, ["2840989393"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, ["2843214518"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, ["2849546516"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, ["2854751904"] = { ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, - }, + ["max"] = 37.5, + ["min"] = 3, + }, ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, - }, + ["max"] = 37.5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + }, ["2866361420"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, ["2881298780"] = { ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, - }, + ["max"] = 185.5, + ["min"] = 2, + }, ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, - }, + ["max"] = 185.5, + ["min"] = 2, + }, ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, - }, + ["max"] = 185.5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + }, ["288364275"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_288364275", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["2891184298"] = { ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, - }, + ["max"] = 35, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, - }, + ["max"] = 52, + ["min"] = 14, + }, ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, - }, + ["max"] = 28, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Focus"] = { - ["max"] = 32, - ["min"] = 9, - }, + ["max"] = 32, + ["min"] = 9, + }, ["Ring"] = { - ["max"] = 24, - ["min"] = 9, - }, + ["max"] = 24, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 52, - ["min"] = 14, - }, + ["max"] = 52, + ["min"] = 14, + }, ["Wand"] = { - ["max"] = 35, - ["min"] = 9, - }, + ["max"] = 35, + ["min"] = 9, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["289128254"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["2897413282"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2897413282", - ["text"] = "# to all Attributes", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2901986750"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, + ["max"] = 18, + ["min"] = 3, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, + ["max"] = 16, + ["min"] = 3, + }, ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2907381231"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, ["2912416697"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + }, ["2923486259"] = { ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Focus"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 27, - ["min"] = 4, - }, + ["max"] = 27, + ["min"] = 4, + }, ["Shield"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 27, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["293638271"] = { ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + }, ["2942439603"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2942439603", - ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "explicit", + }, + }, ["2951965588"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2951965588", - ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "explicit", + }, + }, ["2954360902"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["2957407601"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, ["2968503605"] = { ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, ["2969557004"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, ["2970621759"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 26, - }, + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["2974417149"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 15, - }, + ["max"] = 119, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 30, - }, + ["max"] = 238, + ["min"] = 30, + }, ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["max"] = 30, + ["min"] = 3, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 30, - }, + ["max"] = 238, + ["min"] = 30, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 15, - }, + ["max"] = 119, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["2976476845"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + }, ["3003542304"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, ["300723956"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, ["3015669065"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, ["3028809864"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["3032590688"] = { ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["max"] = 25.5, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["max"] = 25.5, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["max"] = 25.5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, ["3033371881"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, + ["max"] = 23, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, + ["max"] = 23, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, - }, + ["max"] = 23, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + }, ["3035140377"] = { ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["One Hand Axe"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["One Hand Mace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["One Hand Sword"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Two Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Two Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Two Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3037553757"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, ["30438393"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["3057012405"] = { ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, ["30642521"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", - }, + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, ["3065378291"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["3067892458"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["3088348485"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, ["3091578504"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["310246444"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + }, ["3106718406"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, ["3107707789"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "explicit", + }, + }, ["3113764475"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["3119612865"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["3120508478"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3120508478", - ["text"] = "#% increased Damage against Immobilised Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3120508478", + ["text"] = "#% increased Damage against Immobilised Enemies", + ["type"] = "explicit", + }, + }, ["3121133045"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3121133045", - ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + }, ["3141070085"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["3143918757"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3143918757", - ["text"] = "#% increased Glory generation", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", + }, + }, ["3146310524"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + }, ["315791320"] = { ["Sceptre"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + }, ["3166958180"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + }, ["3169585282"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3171212276"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, ["3173882956"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, ["3174700878"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, ["3175163625"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + }, ["318092306"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, ["318953428"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["3191479793"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3191479793", - ["text"] = "Offering Skills have #% increased Buff effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "explicit", + }, + }, ["3192728503"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, ["3196823591"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + }, ["3222402650"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["3225608889"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3233599707"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, ["323800555"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_323800555", - ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "explicit", + }, + }, ["3243034867"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + }, ["3249412463"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3249412463", - ["text"] = "Supported Minions' Strikes have Melee Splash", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "explicit", + }, + }, ["325171970"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_325171970", - ["text"] = "#% increased Attack Speed while missing Runic Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "explicit", + }, + }, ["3256879910"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["3261801346"] = { ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, + ["max"] = 36, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3276224428"] = { ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + }, ["3278136794"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, + ["max"] = 60, + ["min"] = 26, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 13, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, ["3283482523"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + }, ["328541901"] = { ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, - }, + ["max"] = 36, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3291658075"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["max"] = 30, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, ["3292710273"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, ["3299347043"] = { ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, + ["max"] = 149, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, + ["max"] = 174, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 149, - ["min"] = 10, - }, + ["max"] = 149, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 214, - ["min"] = 7, - }, + ["max"] = 214, + ["min"] = 7, + }, ["Gloves"] = { - ["max"] = 149, - ["min"] = 7, - }, + ["max"] = 149, + ["min"] = 7, + }, ["Helmet"] = { - ["max"] = 174, - ["min"] = 7, - }, + ["max"] = 174, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 189, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3301100256"] = { ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", - ["type"] = "explicit", - }, - }, + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + }, ["3321629045"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, ["3325883026"] = { ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, + ["max"] = 33, + ["min"] = 1, + }, ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, + ["max"] = 29, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, + ["max"] = 23, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, + ["max"] = 36, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, + ["max"] = 23, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, + ["max"] = 18, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + }, ["3336230913"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336230913", - ["text"] = "# to maximum Runic Ward", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3336890334"] = { ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, - }, + ["max"] = 123, + ["min"] = 2.5, + }, ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, - }, + ["max"] = 123, + ["min"] = 2.5, + }, ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, - }, + ["max"] = 188.5, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, - }, + ["max"] = 188.5, + ["min"] = 2.5, + }, ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, - }, + ["max"] = 123, + ["min"] = 2.5, + }, ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, - }, + ["max"] = 188.5, + ["min"] = 4, + }, ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, - }, + ["max"] = 123, + ["min"] = 2.5, + }, ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, - }, + ["max"] = 188.5, + ["min"] = 4, + }, ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, - }, + ["max"] = 123, + ["min"] = 2.5, + }, ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, - }, + ["max"] = 188.5, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, ["335885735"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", + }, + }, ["3362812763"] = { ["Boots"] = { - ["max"] = 43, - ["min"] = 14, - }, + ["max"] = 43, + ["min"] = 14, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 14, - }, + ["max"] = 50, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, - }, + ["max"] = 43, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, - }, + ["max"] = 43, + ["min"] = 14, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 50, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3372524247"] = { ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3374165039"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["3377888098"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["3384867265"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3384867265", - ["text"] = "Sealed Skills have #% increased Seal gain frequency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "explicit", + }, + }, ["3386297724"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, ["3391917254"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["3393628375"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3394832998"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, ["3395186672"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["3398301358"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["3398787959"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["3399401168"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3401186585"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, ["3407849389"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "explicit", + }, + }, ["3409275777"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, ["3417711605"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["3419203492"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, ["3422093970"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3422093970", - ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", + ["type"] = "explicit", + }, + }, ["3429148113"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3429148113", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + }, ["3465022881"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3471443885"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3471443885", - ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3471443885", + ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", + ["type"] = "explicit", + }, + }, ["3473929743"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + }, ["3482326075"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "explicit", + }, + }, ["3484657501"] = { ["Boots"] = { - ["max"] = 190, - ["min"] = 9, - }, + ["max"] = 190, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 310, - ["min"] = 3, - }, + ["max"] = 310, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 190, - ["min"] = 9, - }, + ["max"] = 190, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 221, - ["min"] = 9, - }, + ["max"] = 221, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 277, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 277, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3485067555"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, ["3489782002"] = { ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 89, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3513818125"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", + }, + }, ["3518449420"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3518449420", - ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "explicit", + }, + }, ["3523867985"] = { ["Boots"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 110, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, ["3526763442"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3526763442", - ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "explicit", + }, + }, ["3544800472"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, ["3552135623"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3556824919"] = { ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3574578302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["3579898587"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, ["3585532255"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, ["3587953142"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3587953142", - ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + }, ["3590792340"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, ["3596695232"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["3621874554"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3621874554", - ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "explicit", + }, + }, ["3624940721"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3624940721", - ["text"] = "#% increased Explicit Lightning Modifier magnitudes", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["3628935286"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["3639275092"] = { ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Bow"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Flail"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Focus"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["max"] = -15, + ["min"] = -35, + }, ["Wand"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, + ["max"] = -15, + ["min"] = -35, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, ["3641543553"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, ["3655769732"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3665922113"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["3666476747"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", + }, + }, ["3668351662"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", + }, + }, ["3669820740"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["3676141501"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3679418014"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 26, - }, + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["3695891184"] = { ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, + ["max"] = 53, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 53, - ["min"] = 4, - }, + ["max"] = 53, + ["min"] = 4, + }, ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Staff"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 84, - ["min"] = 4, - }, + ["max"] = 84, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + }, ["3700202631"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, ["3714003708"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, ["3741323227"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, ["3742865955"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "explicit", + }, + }, ["3749502527"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, ["3752589831"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, ["3759663284"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, - }, + ["max"] = 46, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["3759735052"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, ["3771516363"] = { ["Shield"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["3774951878"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["3780644166"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, + ["max"] = 32, + ["min"] = 18, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, ["3787460122"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, ["378796798"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["378817135"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3791899485"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, ["3811191316"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["3814876985"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["type"] = "explicit", + }, + }, ["3821543413"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + }, ["3824372849"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + }, ["3835551335"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + }, ["3837707023"] = { ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 13, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3850614073"] = { ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, - }, + ["max"] = 18, + ["min"] = 3, + }, ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3851254963"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, ["3855016469"] = { ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Shield"] = { - ["max"] = 54, - ["min"] = 21, - }, + ["max"] = 54, + ["min"] = 21, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, ["3856744003"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, ["3858398337"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + }, ["3858572996"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858572996", - ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + }, ["3859848445"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, ["3865605585"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, ["3868118796"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3868118796", - ["text"] = "Attacks Chain an additional time", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "explicit", + }, + }, ["387439868"] = { ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, + ["max"] = 100, + ["min"] = 19, + }, ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, + ["max"] = 100, + ["min"] = 19, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, + ["max"] = 139, + ["min"] = 34, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, - }, + ["max"] = 139, + ["min"] = 19, + }, ["Bow"] = { - ["max"] = 100, - ["min"] = 19, - }, + ["max"] = 100, + ["min"] = 19, + }, ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, - }, + ["max"] = 139, + ["min"] = 34, + }, ["Flail"] = { - ["max"] = 100, - ["min"] = 19, - }, + ["max"] = 100, + ["min"] = 19, + }, ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, - }, + ["max"] = 139, + ["min"] = 34, + }, ["Spear"] = { - ["max"] = 100, - ["min"] = 19, - }, + ["max"] = 100, + ["min"] = 19, + }, ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, - }, + ["max"] = 139, + ["min"] = 34, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + }, ["3885405204"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, ["388617051"] = { - ["invertOnNegative"] = true, + ["invertOnNegative"] = true, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, ["3891355829"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "explicit", + }, + }, ["391602279"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + }, ["3917489142"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 6, - }, + ["max"] = 19, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 19, - ["min"] = 6, - }, + ["max"] = 19, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 6, - }, + ["max"] = 19, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, ["3936121440"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, ["394473632"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, ["3962278098"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["max"] = 30, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["3973629633"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, ["3981240776"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 50, + ["min"] = 30, + }, ["Chest"] = { - ["max"] = 61, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 61, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3984146263"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984146263", - ["text"] = "Tempest Bells are destroyed after an additional # Hits", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "explicit", + }, + }, ["3984865854"] = { ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 10, - }, + ["max"] = 65, + ["min"] = 10, + }, ["Sceptre"] = { - ["max"] = 65, - ["min"] = 10, - }, + ["max"] = 65, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, ["4009879772"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, ["4010677958"] = { ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 1, - }, + ["max"] = 33, + ["min"] = 1, + }, ["Sceptre"] = { - ["max"] = 33, - ["min"] = 1, - }, + ["max"] = 33, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + }, ["4015621042"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Focus"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, + ["max"] = 110, + ["min"] = 101, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, ["4019237939"] = { ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, + ["max"] = 33, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + }, ["4032352472"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", + }, + }, ["4045894391"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, ["4052037485"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 5, - }, + ["max"] = 60, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 96, - ["min"] = 2, - }, + ["max"] = 96, + ["min"] = 2, + }, ["Focus"] = { - ["max"] = 90, - ["min"] = 10, - }, + ["max"] = 90, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 5, - }, + ["max"] = 60, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 73, - ["min"] = 5, - }, + ["max"] = 73, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 42, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 42, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4067062424"] = { ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, + ["max"] = 30.5, + ["min"] = 1.5, + }, ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, + ["max"] = 30.5, + ["min"] = 1.5, + }, ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, + ["max"] = 30.5, + ["min"] = 1.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + }, ["4080418644"] = { ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, + ["max"] = 36, + ["min"] = 5, + }, ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, + ["max"] = 33, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4081947835"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, ["4089835882"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + }, ["4092130601"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, ["4095671657"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4097212302"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4097212302", - ["text"] = "# to maximum number of Elemental Infusions", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4101445926"] = { ["Focus"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 32, - ["min"] = 28, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, ["412709880"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + }, ["4129825612"] = { ["Body Armour"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + }, ["4139681126"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, ["4142814612"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["4147510958"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147510958", - ["text"] = "Sealed Skills have # to maximum Seals", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4147897060"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + }, ["4159248054"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["416040624"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["4162678661"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["4173554949"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, ["4180952808"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, ["4188894176"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + }, ["4215035940"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "explicit", + }, + }, ["4220027924"] = { ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, + ["max"] = 45, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4225700219"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, ["4226189338"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4234573345"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + }, ["4236566306"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, ["4246007234"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4246007234", - ["text"] = "#% increased Attack Damage while on Low Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "explicit", + }, + }, ["4258000627"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "explicit", + }, + }, ["4258524206"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "explicit", + }, + }, ["4258720395"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, ["4259875040"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4259875040", - ["text"] = "#% increased Magnitude of Impales inflicted with Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["type"] = "explicit", + }, + }, ["4273473110"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_4273473110", - ["text"] = "#% increased maximum Runic Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "explicit", + }, + }, ["427684353"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", + }, + }, ["429143663"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["434750362"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_434750362", - ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + }, ["440490623"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, ["442393998"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + }, ["44972811"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, ["455816363"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["458438597"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, ["462424929"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, ["472520716"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, + ["max"] = 24, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, ["473429811"] = { ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, + ["max"] = 80, + ["min"] = 31, + }, ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, + ["max"] = 80, + ["min"] = 31, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, + ["max"] = 80, + ["min"] = 31, + }, ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, + ["max"] = 80, + ["min"] = 31, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, ["473917671"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["484792219"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + }, ["491450213"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["504915064"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, ["517664839"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "explicit", + }, + }, ["518292764"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, - }, + ["max"] = 5, + ["min"] = 1.01, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1.01, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["51994685"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, ["525523040"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + }, ["53045048"] = { ["Boots"] = { - ["max"] = 176, - ["min"] = 6, - }, + ["max"] = 176, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 300, - ["min"] = 2, - }, + ["max"] = 300, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 176, - ["min"] = 6, - }, + ["max"] = 176, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 207, - ["min"] = 6, - }, + ["max"] = 207, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 261, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 261, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["533892981"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, ["538241406"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, ["541021467"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_541021467", - ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + }, ["54812069"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_54812069", - ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "explicit", + }, + }, ["554145967"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_554145967", - ["text"] = "Recover # Runic Ward when a Charm is used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", + ["type"] = "explicit", + }, + }, ["555706343"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["55876295"] = { ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Crossbow"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Flail"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Spear"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 6, - }, + ["max"] = 9.9, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + }, ["565784293"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + }, ["587431675"] = { ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, - }, + ["max"] = 34, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["589361270"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_589361270", - ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["type"] = "explicit", + }, + }, ["591105508"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["593241812"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, ["61644361"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, ["624954515"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, ["627767961"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, ["62849030"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_62849030", - ["text"] = "Critical Hits Poison the enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", + ["type"] = "explicit", + }, + }, ["644456512"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["max"] = 25, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, ["648019518"] = { ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, ["654207792"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, ["656461285"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, ["669069897"] = { ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "explicit", + }, + }, ["674553446"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, ["680068163"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, ["681332047"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["686254215"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + }, ["691932474"] = { ["1HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 10, - }, + ["max"] = 650, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 650, - ["min"] = 10, - }, + ["max"] = 650, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 650, - ["min"] = 10, - }, + ["max"] = 650, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 550, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["693237939"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["700317374"] = { ["LifeFlask"] = { - ["max"] = 80, - ["min"] = -50, - }, + ["max"] = 80, + ["min"] = -50, + }, ["ManaFlask"] = { - ["max"] = 80, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, + ["max"] = 80, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, ["707457662"] = { ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["max"] = 8.9, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 6.9, - ["min"] = 5, - }, + ["max"] = 6.9, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + }, ["709508406"] = { ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, - }, + ["max"] = 127.5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, - }, + ["max"] = 127.5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, - }, + ["max"] = 196, + ["min"] = 3.5, + }, ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, - }, + ["max"] = 196, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, - }, + ["max"] = 127.5, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, - }, + ["max"] = 196, + ["min"] = 3.5, + }, ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, - }, + ["max"] = 127.5, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, - }, + ["max"] = 196, + ["min"] = 3.5, + }, ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, - }, + ["max"] = 127.5, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, - }, + ["max"] = 196, + ["min"] = 3.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, ["712554801"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, ["715957346"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, + ["718638445"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["73032170"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "explicit", + }, + }, ["734614379"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, ["736967255"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, + ["max"] = 89, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["max"] = 30, + ["min"] = 3, + }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["737908626"] = { ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, - }, + ["max"] = 73, + ["min"] = 27, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, - }, + ["max"] = 109, + ["min"] = 40, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 59, - ["min"] = 27, - }, + ["max"] = 59, + ["min"] = 27, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 40, - }, + ["max"] = 109, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 73, - ["min"] = 27, - }, + ["max"] = 73, + ["min"] = 27, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, ["748522257"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 11, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + }, ["758893621"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_758893621", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["770672621"] = { ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, + ["max"] = 50, + ["min"] = 21, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, - }, + ["max"] = 50, + ["min"] = 21, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["789117908"] = { ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 8, - }, + ["max"] = 69, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 8, - }, + ["max"] = 104, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["max"] = 69, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 69, - ["min"] = 8, - }, + ["max"] = 69, + ["min"] = 8, + }, ["Sceptre"] = { - ["max"] = 69, - ["min"] = 8, - }, + ["max"] = 69, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 104, - ["min"] = 8, - }, + ["max"] = 104, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 8, - }, + ["max"] = 69, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, ["791928121"] = { ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["max"] = 80, + ["min"] = 21, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, ["793875384"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, ["795138349"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, ["797289402"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_797289402", - ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + }, ["803737631"] = { ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, + ["max"] = 450, + ["min"] = 11, + }, ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, - }, + ["max"] = 550, + ["min"] = 11, + }, ["Helmet"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["max"] = 550, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, - }, + ["max"] = 550, + ["min"] = 11, + }, ["Ring"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 450, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["809229260"] = { ["Belt"] = { - ["max"] = 351, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 351, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["818778753"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["821021828"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, ["821241191"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["821948283"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, ["825116955"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_825116955", - ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "explicit", + }, + }, ["828533480"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["type"] = "explicit", + }, + }, ["830161081"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Runic Ward", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "explicit", + }, + }, ["830345042"] = { - ["specialCaseData"] = { - }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, ["844449513"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["849987426"] = { ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["max"] = 37, + ["min"] = 2, + }, ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["max"] = 37, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + }, ["868556494"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["872504239"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, ["886931978"] = { ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 100, + ["min"] = 51, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, ["915769802"] = { ["Belt"] = { - ["max"] = 304, - ["min"] = 6, - }, + ["max"] = 304, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 352, - ["min"] = 6, - }, + ["max"] = 352, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 304, - ["min"] = 6, - }, + ["max"] = 304, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 304, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["918325986"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, ["9187492"] = { ["1HMace"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["max"] = 4, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["924253255"] = { ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, - }, + ["max"] = -5, + ["min"] = -10, + }, ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, + ["max"] = -5, + ["min"] = -10, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, ["933355817"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + }, ["942519401"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, ["944643028"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, ["945774314"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + }, ["953593695"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "explicit", + }, + }, ["959641748"] = { ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, ["971590056"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["980177976"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["983749596"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 8, + ["min"] = 3, + }, ["Body Armour"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, ["986397080"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, ["99927264"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", - ["type"] = "explicit", - }, - }, - }, + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "explicit", + }, + }, + }, ["Implicit"] = { + ["1028592286"] = { + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "implicit", + }, + }, ["1050105434"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1137147997"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + }, + ["1181501418"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1207554355"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + }, ["1379411836"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["max"] = 7, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, + ["max"] = 24, + ["min"] = 16, + }, ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1389754388"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", + }, + }, ["1412682799"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", - }, - }, - ["1416292992"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", + }, + }, ["1434716233"] = { ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + }, ["1444556985"] = { ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 14, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, ["1451444093"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + }, ["1458343515"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "implicit", + }, + }, + ["1459321413"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1458343515", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + }, ["1503146834"] = { ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + }, ["1541903247"] = { ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + }, ["1570770415"] = { ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + }, ["1573130764"] = { ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + }, ["1589917703"] = { ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["max"] = 100, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, ["1671376347"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1691862754"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + }, ["1702195217"] = { ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1745952865"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, + ["1754445556"] = { + ["Belt"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "implicit", + }, + }, ["1803308202"] = { ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + }, ["1810482573"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + }, ["1836676211"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, + ["1840985759"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "implicit", + }, + }, ["1856590738"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "implicit", + }, + }, + ["1879206848"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1856590738", - ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "implicit", + }, + }, ["1967051901"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", + }, + }, ["1978899297"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["1980802737"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + }, ["2016937536"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + }, + ["2039822488"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2055966527"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2194114101"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + }, ["2222186378"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + }, ["2250533757"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, ["2251279027"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2321178454"] = { ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + }, + ["2339757871"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, + ["2392260628"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "implicit", + }, + }, ["239367161"] = { ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, + ["max"] = 40, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + }, ["2463230181"] = { ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2527686725"] = { ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + }, + ["254952842"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_254952842", + ["text"] = "Catalysts can be applied to this item", + ["type"] = "implicit", + }, + }, ["2646093132"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", + }, + }, ["2694482655"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2733960806"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "implicit", + }, + }, + ["2748665614"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2733960806", - ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, ["2778646494"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + }, ["2797971005"] = { ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, ["2891184298"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, ["2901986750"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2923486259"] = { ["Chest"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 7, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 19, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["2933846633"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", + }, + }, ["2968503605"] = { ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 80, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + }, ["2994271459"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + }, ["3032590688"] = { ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, + ["max"] = 12, + ["min"] = 2.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, ["3182714256"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, + ["max"] = 2, + ["min"] = -2, + }, ["Ring"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 2, + ["min"] = -2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3261801346"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["328541901"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3299347043"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["Chest"] = { - ["max"] = 80, - ["min"] = 60, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 80, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3310778564"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + }, ["3325883026"] = { ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + }, + ["3336230913"] = { + ["1HMace"] = { + ["max"] = 150, + ["min"] = 100, + }, + ["1HWeapon"] = { + ["max"] = 300, + ["min"] = 100, + }, + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 300, + ["min"] = 300, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3362812763"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3372524247"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3398402065"] = { ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, - }, + ["max"] = -50, + ["min"] = -50, + }, ["Bow"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + }, ["3544800472"] = { ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + }, ["3585532255"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + }, + ["3663551379"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3663551379", + ["text"] = "Cannot load or fire Ammunition", + ["type"] = "implicit", + }, + }, ["3675300253"] = { ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + }, ["3676540188"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + }, ["3699444296"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + }, + ["3791899485"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "implicit", + }, + }, ["3854901951"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + }, ["3855016469"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + }, ["3917489142"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, + ["max"] = 20, + ["min"] = 12, + }, ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, ["3954735777"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + }, ["3981240776"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["4010341289"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + }, ["4077843608"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, ["4080418644"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["4126210832"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", + }, + }, ["4220027924"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["4273473110"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "implicit", + }, + }, + ["4277795662"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["458438597"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, ["462041840"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + }, ["548198834"] = { ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, + ["max"] = 16, + ["min"] = 16, + }, ["Quarterstaff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", - }, - }, + ["max"] = 16, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", + }, + }, + ["569299859"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["585126960"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + }, ["624954515"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + }, ["644456512"] = { ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, ["680068163"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, ["681332047"] = { ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, ["718638445"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, + ["max"] = 2, + ["min"] = -2, + }, ["Ring"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 2, + ["min"] = -2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["731781020"] = { ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, - }, + ["max"] = 1, + ["min"] = 0.17, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + }, + ["736967255"] = { + ["Ring"] = { + ["max"] = 23, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, + ["774059442"] = { + ["Chest"] = { + ["max"] = 1000, + ["min"] = 750, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["789117908"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, ["791928121"] = { ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", + }, + }, ["803737631"] = { ["Ring"] = { - ["max"] = 160, - ["min"] = 120, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 160, + ["min"] = 120, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["809229260"] = { + ["Belt"] = { + ["max"] = 180, + ["min"] = 140, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["821241191"] = { ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, ["836936635"] = { ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", + }, + }, ["924253255"] = { ["Chest"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", - }, - }, + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", + }, + }, ["958696139"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", - }, - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + }, + ["983749596"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, + }, ["Rune"] = { ["1004011302"] = { ["Focus"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", - }, - }, + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + }, ["1011760251"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["101878827"] = { ["1HWeapon"] = { - ["max"] = 50, - ["min"] = -40, - }, - ["invertOnNegative"] = true, + ["max"] = 50, + ["min"] = -40, + }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = -40, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + }, + ["1020945697"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", - }, - }, - ["1037193709"] = { + ["id"] = "rune.stat_1020945697", + ["text"] = "#% less maximum Life", + ["type"] = "augment", + }, + }, + ["1030153674"] = { ["1HMace"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 18, - ["min"] = 4, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", - }, - }, - ["1050105434"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + }, + ["103706408"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 90, - ["min"] = 45, - }, - ["Boots"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 90, - ["min"] = 45, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["1368271171"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_103706408", + ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", + ["type"] = "augment", + }, + }, + ["1037193709"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Crossbow"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Flail"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Quarterstaff"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Spear"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["Talisman"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", - }, - }, - ["1444556985"] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + }, + ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["2HWeapon"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", - }, - }, - ["1519615863"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1181501418"] = { + ["1HWeapon"] = { + ["max"] = -10, + ["min"] = -10, + }, + ["2HWeapon"] = { + ["max"] = -10, + ["min"] = -10, + }, + ["Helmet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = -10, + ["min"] = -10, + }, + ["Spear"] = { + ["max"] = -10, + ["min"] = -10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1197632982"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1228682002"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "enchant", - }, - }, - ["1671376347"] = { + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", + }, + }, + ["1238227257"] = { ["Boots"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "enchant", - }, - }, - ["185580205"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charge per Second", - ["type"] = "enchant", - }, - }, - ["1978899297"] = { - ["Chest"] = { - ["max"] = -10, - ["min"] = -10, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "enchant", - }, - }, - ["1998951374"] = { + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", + }, + }, + ["124131830"] = { ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, + }, + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", + }, + }, + ["1323701627"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "enchant", - }, - }, - ["210067635"] = { + ["id"] = "rune.stat_1323701627", + ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + }, + ["1368271171"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 40, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "enchant", - }, - }, - ["2223678961"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", + }, + }, + ["1374654984"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", + }, + }, + ["1382805233"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", + }, + }, + ["1392112423"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1392112423", + ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", + ["type"] = "augment", + }, + }, + ["1433756169"] = { ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "enchant", - }, - }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", - }, - }, - ["227523295"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "enchant", - }, - }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "enchant", - }, - }, - ["2694482655"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, + ["1433896639"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["280731498"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "enchant", - }, - }, - ["2891184298"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", - }, - }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "enchant", - }, - }, - ["2901986750"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["2923486259"] = { - ["Boots"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Chest"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Focus"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["id"] = "rune.stat_1433896639", + ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", + ["type"] = "augment", + }, + }, + ["1444556985"] = { ["Helmet"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Shield"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["293638271"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + }, + ["1496740334"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "enchant", - }, - }, - ["2968503605"] = { + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", + }, + }, + ["1519615863"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "enchant", - }, - }, - ["2974417149"] = { + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", + }, + }, + ["153777645"] = { + ["Focus"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "augment", + }, + }, + ["1539508682"] = { ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", - }, - }, - ["3057012405"] = { + ["max"] = -20, + ["min"] = -20, + }, + ["Sceptre"] = { + ["max"] = -20, + ["min"] = -20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1539508682", + ["text"] = "Companions in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + }, + ["1549287843"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1549287843", + ["text"] = "Projectiles have #% chance to Fork", + ["type"] = "augment", + }, + }, + ["1555237944"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "enchant", - }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "enchant", - }, - }, - ["3261801346"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["type"] = "augment", + }, + }, + ["1556124492"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["328541901"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", + }, + }, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", + }, + }, + ["1585886916"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + }, + ["162036024"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_162036024", + ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", + ["type"] = "augment", + }, + }, + ["1624833382"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1624833382", + ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", + ["type"] = "augment", + }, + }, + ["1671376347"] = { ["Boots"] = { - ["max"] = 75, - ["min"] = 30, - }, - ["Bow"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 22, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 75, - ["min"] = 30, - }, + ["max"] = 22, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1676950499"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1676950499", + ["text"] = "Can roll Destruction modifiers", + ["type"] = "augment", + }, + }, + ["1678831767"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1678831767", + ["text"] = "Recover # Life when you Block", + ["type"] = "augment", + }, + }, + ["1755296234"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1770091046"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1770091046", + ["text"] = "Can roll Berserking modifiers", + ["type"] = "augment", + }, + }, + ["1772929282"] = { + ["Helmet"] = { + ["max"] = -5, + ["min"] = -5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", + }, + }, + ["1779262102"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1779262102", + ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", + ["type"] = "augment", + }, + }, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", + }, + }, + ["1805182458"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "augment", + }, + }, + ["1805633363"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + }, + ["1879206848"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + }, + ["1911097163"] = { + ["1HWeapon"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Sceptre"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1911097163", + ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", + ["type"] = "augment", + }, + }, + ["1927467683"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1927467683", + ["text"] = "Can roll Soul modifiers", + ["type"] = "augment", + }, + }, + ["1937310173"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", + }, + }, + ["1947060170"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1963398329"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Focus"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1963398329", + ["text"] = "Can have # additional Crafted Modifier", + ["type"] = "augment", + }, + }, + ["1963589548"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1963589548", + ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", + ["type"] = "augment", + }, + }, + ["1978899297"] = { + ["Chest"] = { + ["max"] = -10, + ["min"] = -10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "augment", + }, + }, + ["1984310483"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", + }, + }, + ["1995345015"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1995345015", + ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", + ["type"] = "augment", + }, + }, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["1999910726"] = { + ["1HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Wand"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "augment", + }, + }, + ["2011656677"] = { + ["1HMace"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["1HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HMace"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Claw"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Crossbow"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Flail"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Quarterstaff"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Spear"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Talisman"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", + }, + }, + ["2023107756"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + }, + ["2045949233"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "augment", + }, + }, + ["2074866941"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "augment", + }, + }, + ["2077615515"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", + }, + }, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", + }, + }, + ["2191621386"] = { + ["Chest"] = { + ["max"] = 75, + ["min"] = 75, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2200571612"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2223678961"] = { + ["1HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Bow"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Crossbow"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Flail"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Quarterstaff"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Spear"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Talisman"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", + }, + }, + ["2231410646"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["type"] = "augment", + }, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", + }, + }, + ["2310741722"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + }, + ["2328443419"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2328443419", + ["text"] = "#% chance to create an additional Remnant", + ["type"] = "augment", + }, + }, + ["2339757871"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, + ["234296660"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "augment", + }, + }, + ["2363593824"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", + }, + }, + ["2390027291"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2390027291", + ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", + ["type"] = "augment", + }, + }, + ["2392260628"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "augment", + }, + }, + ["2448633171"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", + ["type"] = "augment", + }, + }, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2480498143"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", + }, + }, + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + }, + ["2579974553"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2579974553", + ["text"] = "Runic Ward Regeneration Rate is doubled", + ["type"] = "augment", + }, + }, + ["258119672"] = { + ["Boots"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2586152168"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "augment", + }, + }, + ["2608793552"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2608793552", + ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", + ["type"] = "augment", + }, + }, + ["2616640048"] = { + ["1HWeapon"] = { + ["max"] = 32, + ["min"] = 32, + }, + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 32, + }, + ["Bow"] = { + ["max"] = 32, + ["min"] = 32, + }, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 32, + }, + ["Spear"] = { + ["max"] = 32, + ["min"] = 32, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2616640048", + ["text"] = "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of #", + ["type"] = "augment", + }, + }, + ["262946222"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "augment", + }, + }, + ["263495202"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + }, + ["2652394701"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2652394701", + ["text"] = "Companions in your Presence gain # Rage on hit", + ["type"] = "augment", + }, + }, + ["2663359259"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", + }, + }, + ["267552601"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_267552601", + ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", + ["type"] = "augment", + }, + }, + ["2681952497"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2681952497", + ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["type"] = "augment", + }, + }, + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2703838669"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2703838669", + ["text"] = "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%Other Modifiers to Movement Speed except for Sprinting do not apply", + ["type"] = "augment", + }, + }, + ["2704225257"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2709367754"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + }, + ["2748665614"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", + }, + }, + ["280497929"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["280731498"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", + }, + }, + ["282990844"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_282990844", + ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2829985691"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2829985691", + ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", + ["type"] = "augment", + }, + }, + ["2838678452"] = { + ["Shield"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2838678452", + ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2854751904"] = { + ["1HWeapon"] = { + ["max"] = 20.5, + ["min"] = 20.5, + }, + ["Sceptre"] = { + ["max"] = 20.5, + ["min"] = 20.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", + }, + }, + ["2876843277"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + }, + ["2882351629"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2882351629", + ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", + ["type"] = "augment", + }, + }, + ["2889034188"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2889034188", + ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", + ["type"] = "augment", + }, + }, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", + }, + }, + ["2897413282"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2901986750"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2910761524"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", + }, + }, + ["2913012734"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", + }, + }, + ["2916861134"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", + }, + }, + ["2923486259"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Chest"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Focus"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["293638271"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", + }, + }, + ["293832783"] = { + ["Boots"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_293832783", + ["text"] = "When you stop Sprinting, gain Guard equal to #% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds", + ["type"] = "augment", + }, + }, + ["2942439603"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "augment", + }, + }, + ["2968503605"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", + }, + }, + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", + }, + }, + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", + }, + }, + ["3033371881"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "augment", + }, + }, + ["3035971497"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3035971497", + ["text"] = "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", + ["type"] = "augment", + }, + }, + ["3040571529"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "augment", + }, + }, + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["3087034595"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3087034595", + ["text"] = "#% increased Block chance while your Companion is in your Presence", + ["type"] = "augment", + }, + }, + ["3091578504"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "augment", + }, + }, + ["3107707789"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + }, + ["3132681620"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3132681620", + ["text"] = "Can roll Chronomancy modifiers", + ["type"] = "augment", + }, + }, + ["3145796865"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3145796865", + ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", + ["type"] = "augment", + }, + }, + ["3151560620"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3151560620", + ["text"] = "#% increased Damage per each different Companion in your Presence", + ["type"] = "augment", + }, + }, + ["315791320"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "augment", + }, + }, + ["3203854378"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3203854378", + ["text"] = "#% increased Attack Speed if you have Blocked Recently", + ["type"] = "augment", + }, + }, + ["3257561708"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3257561708", + ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + }, + ["3261801346"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, + ["328541901"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3299347043"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Boots"] = { + ["max"] = 75, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Chest"] = { + ["max"] = 75, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Crossbow"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Focus"] = { + ["max"] = 75, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 75, + ["min"] = 30, + }, + ["Helmet"] = { + ["max"] = 75, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Shield"] = { + ["max"] = 75, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Staff"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Wand"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["1HWeapon"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Bow"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Claw"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Crossbow"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Flail"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Quarterstaff"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Spear"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["Talisman"] = { + ["max"] = 20.5, + ["min"] = 5.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", + }, + }, + ["3353733343"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3353733343", + ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + }, + ["3362812763"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3372524247"] = { + ["Boots"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3377888098"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", + }, + }, + ["3398301358"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + }, + ["3398787959"] = { + ["1HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Crossbow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Flail"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Quarterstaff"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Spear"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Talisman"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + }, + ["3407849389"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", + }, + }, + ["3444646646"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3444646646", + ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", + ["type"] = "augment", + }, + }, + ["3473409233"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + }, + ["3482326075"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "augment", + }, + }, + ["3484657501"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3489782002"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3515226849"] = { + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Sceptre"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3515226849", + ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", + ["type"] = "augment", + }, + }, + ["3523867985"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + }, + ["3537994888"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "augment", + }, + }, + ["3544800472"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + }, + ["3552135623"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3570773271"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", + }, + }, + ["3585532255"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", + }, + }, + ["3666934677"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "augment", + }, + }, + ["3676141501"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3678845069"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", + }, + }, + ["3695891184"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 45, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + }, + ["3734640451"] = { + ["1HMace"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["1HWeapon"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["2HMace"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["2HWeapon"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Bow"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Claw"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Crossbow"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Flail"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Quarterstaff"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Spear"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["Talisman"] = { + ["max"] = 23.5, + ["min"] = 23.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3734640451", + ["text"] = "Adds # to # Cold Damage against Chilled Enemies", + ["type"] = "augment", + }, + }, + ["3742865955"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Sceptre"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + }, + ["3759663284"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + }, + ["3801067695"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", + }, + }, + ["3814102597"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3814102597", + ["text"] = "All damage taken bypasses Runic Ward", + ["type"] = "augment", + }, + }, + ["3824372849"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + }, + ["3837707023"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3850614073"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Sceptre"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["386720106"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_386720106", + ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", + ["type"] = "augment", + }, + }, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Crossbow"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Flail"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Focus"] = { - ["max"] = 75, - ["min"] = 30, - }, - ["Gloves"] = { - ["max"] = 75, - ["min"] = 30, - }, - ["Helmet"] = { - ["max"] = 75, - ["min"] = 10, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Shield"] = { - ["max"] = 75, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Spear"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Talisman"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3336890334"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", + }, + }, + ["3885405204"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", + }, + }, + ["3885634897"] = { ["1HMace"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + }, + ["3903510399"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 35, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", - }, - }, - ["3372524247"] = { - ["Boots"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + }, + ["3917489142"] = { ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3377888098"] = { + ["max"] = 12, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", + }, + }, + ["3972229254"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3973629633"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "enchant", - }, - }, - ["3398787959"] = { + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", + }, + }, + ["3981240776"] = { ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "enchant", - }, - }, - ["3676141501"] = { + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + }, + ["4052037485"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4058681894"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3695891184"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["4063732952"] = { + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4063732952", + ["text"] = "#% increased Spell Damage while your Companion is in your Presence", + ["type"] = "augment", + }, + }, + ["4064396395"] = { ["1HMace"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 45, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", + }, + }, + ["4065951768"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", - }, - }, - ["387439868"] = { + ["id"] = "rune.stat_4065951768", + ["text"] = "#% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + }, + ["4080418644"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 6, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 6, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 15, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 6, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "enchant", - }, - }, - ["3885405204"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["416040624"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 16, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + }, + ["4200448078"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "enchant", - }, - }, - ["3885634897"] = { + ["id"] = "rune.stat_4200448078", + ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + }, + ["4220027924"] = { + ["Boots"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 22, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4236566306"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + }, + ["4282982513"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "enchant", - }, - }, - ["3917489142"] = { + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, + ["458438597"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "enchant", - }, - }, - ["3981240776"] = { + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + }, + ["473429811"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "enchant", - }, - }, - ["4080418644"] = { + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "augment", + }, + }, + ["53045048"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["538981065"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "augment", + }, + }, + ["540694930"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_540694930", + ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", + ["type"] = "augment", + }, + }, + ["553018427"] = { + ["1HWeapon"] = { + ["max"] = -30, + ["min"] = -30, + }, + ["Sceptre"] = { + ["max"] = -30, + ["min"] = -30, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_553018427", + ["text"] = "#% increased Mana Cost Efficiency of Command Skills", + ["type"] = "augment", + }, + }, + ["554899692"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["55876295"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["Quarterstaff"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Talisman"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", + }, + }, + ["587431675"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 200, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "augment", + }, + }, + ["594547430"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", + }, + }, + ["602344904"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["4095671657"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["4220027924"] = { - ["Boots"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_602344904", + ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", + ["type"] = "augment", + }, + }, + ["610569665"] = { ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["4236566306"] = { + ["max"] = -1, + ["min"] = -1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_610569665", + ["text"] = "# to Spirit per 2 Levels", + ["type"] = "augment", + }, + }, + ["627339348"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 28.5, + ["min"] = 28.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", + ["type"] = "augment", + }, + }, + ["632743438"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_632743438", + ["text"] = "Allies in your Presence have #% increased Movement Speed", + ["type"] = "augment", + }, + }, + ["649025131"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", + }, + }, + ["666077204"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Sceptre"] = { + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "enchant", - }, - }, - ["44972811"] = { - ["Shield"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["id"] = "rune.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", + }, + }, + ["687156079"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Crossbow"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Flail"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Quarterstaff"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Spear"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["Talisman"] = { + ["max"] = 150, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 18.5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 18.5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", - }, - }, - ["473429811"] = { + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + }, + ["718638445"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Focus"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["726496846"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_726496846", + ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", + ["type"] = "augment", + }, + }, + ["731403740"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", - }, - }, - ["709508406"] = { + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + }, + ["731781020"] = { ["1HMace"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["1HWeapon"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HMace"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["2HWeapon"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Bow"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Claw"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Crossbow"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Flail"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Quarterstaff"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Sceptre"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Spear"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Staff"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Talisman"] = { - ["max"] = 18.5, - ["min"] = 5, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Wand"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "rune.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "augment", + }, + }, ["737908626"] = { ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 16, - }, + ["max"] = 28, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + }, + ["757050353"] = { + ["Boots"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Chest"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Focus"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Gloves"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Helmet"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Shield"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + }, + ["762761075"] = { + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", - }, - }, + ["id"] = "rune.stat_762761075", + ["text"] = "#% less Mana Regeneration Rate", + ["type"] = "augment", + }, + }, + ["770672621"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + }, + ["774059442"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["789117908"] = { ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Focus"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 21, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", - }, - }, + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "augment", + }, + }, ["791928121"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", - }, - }, - ["803737631"] = { + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", + }, + }, + ["830161081"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "augment", + }, + }, ["836936635"] = { ["Boots"] = { - ["max"] = 0.5, - ["min"] = 0.35, - }, + ["max"] = 0.5, + ["min"] = 0.35, + }, + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 0.35, + }, + ["Focus"] = { + ["max"] = 0.5, + ["min"] = 0.35, + }, + ["Gloves"] = { + ["max"] = 0.5, + ["min"] = 0.35, + }, + ["Helmet"] = { + ["max"] = 0.5, + ["min"] = 0.35, + }, + ["Shield"] = { + ["max"] = 0.5, + ["min"] = 0.35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + }, + ["889552744"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 1.5, - ["min"] = 0.35, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Focus"] = { - ["max"] = 0.5, - ["min"] = 0.35, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 0.5, - ["min"] = 0.35, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.35, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 0.5, - ["min"] = 0.35, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", + }, + }, + ["90012347"] = { + ["1HMace"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["2HMace"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["2HWeapon"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Bow"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Claw"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Crossbow"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Flail"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Quarterstaff"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Spear"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["Talisman"] = { + ["max"] = 30.5, + ["min"] = 30.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "augment", + }, + }, + ["901336307"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "enchant", - }, - }, + ["id"] = "rune.stat_901336307", + ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", + ["type"] = "augment", + }, + }, + ["915769802"] = { + ["Boots"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["Chest"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["Gloves"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 125, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["924253255"] = { ["Boots"] = { - ["max"] = -15, - ["min"] = -15, - }, + ["max"] = -15, + ["min"] = -15, + }, ["Chest"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", - }, - }, + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + }, ["970213192"] = { ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Flail"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Spear"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Talisman"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", - }, - }, - }, + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + }, + ["983749596"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "augment", + }, + }, + }, } \ No newline at end of file diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua new file mode 100644 index 000000000..7d03f4613 --- /dev/null +++ b/src/Data/TradeSiteStats.lua @@ -0,0 +1,35092 @@ +-- This file is automatically downloaded, do not edit! +-- Trade site stat data (c) Grinding Gear Games +-- https://www.pathofexile.com/api/trade2/data/stats +-- spell-checker: disable +return { + [1] = { + ["entries"] = { + [1] = { + ["id"] = "pseudo.pseudo_number_of_crafted_mods", + ["text"] = "# Crafted Modifiers", + ["type"] = "pseudo", + }, + [2] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_mods", + ["text"] = "# Desecrated Modifiers", + ["type"] = "pseudo", + }, + [3] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_prefix_mods", + ["text"] = "# Desecrated Prefix Modifiers", + ["type"] = "pseudo", + }, + [4] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_suffix_mods", + ["text"] = "# Desecrated Suffix Modifiers", + ["type"] = "pseudo", + }, + [5] = { + ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", + ["text"] = "# Empty Modifiers", + ["type"] = "pseudo", + }, + [6] = { + ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", + ["text"] = "# Empty Prefix Modifiers", + ["type"] = "pseudo", + }, + [7] = { + ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", + ["text"] = "# Empty Suffix Modifiers", + ["type"] = "pseudo", + }, + [8] = { + ["id"] = "pseudo.pseudo_number_of_enchant_mods", + ["text"] = "# Enchant Modifiers", + ["type"] = "pseudo", + }, + [9] = { + ["id"] = "pseudo.pseudo_number_of_fractured_mods", + ["text"] = "# Fractured Modifiers", + ["type"] = "pseudo", + }, + [10] = { + ["id"] = "pseudo.pseudo_number_of_implicit_mods", + ["text"] = "# Implicit Modifiers", + ["type"] = "pseudo", + }, + [11] = { + ["id"] = "pseudo.pseudo_number_of_affix_mods", + ["text"] = "# Modifiers", + ["type"] = "pseudo", + }, + [12] = { + ["id"] = "pseudo.pseudo_number_of_prefix_mods", + ["text"] = "# Prefix Modifiers", + ["type"] = "pseudo", + }, + [13] = { + ["id"] = "pseudo.pseudo_number_of_suffix_mods", + ["text"] = "# Suffix Modifiers", + ["type"] = "pseudo", + }, + [14] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_mods", + ["text"] = "# Unrevealed Modifiers", + ["type"] = "pseudo", + }, + [15] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_prefix_mods", + ["text"] = "# Unrevealed Prefix Modifiers", + ["type"] = "pseudo", + }, + [16] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_suffix_mods", + ["text"] = "# Unrevealed Suffix Modifiers", + ["type"] = "pseudo", + }, + [17] = { + ["id"] = "pseudo.pseudo_count_elemental_resistances", + ["text"] = "# total Elemental Resistances", + ["type"] = "pseudo", + }, + [18] = { + ["id"] = "pseudo.pseudo_count_resistances", + ["text"] = "# total Resistances", + ["type"] = "pseudo", + }, + [19] = { + ["id"] = "pseudo.pseudo_number_of_uses_remaining", + ["text"] = "# uses remaining (Tablets)", + ["type"] = "pseudo", + }, + [20] = { + ["id"] = "pseudo.pseudo_increased_movement_speed", + ["text"] = "#% increased Movement Speed", + ["type"] = "pseudo", + }, + [21] = { + ["id"] = "pseudo.pseudo_increased_energy_shield", + ["text"] = "#% total increased maximum Energy Shield", + ["type"] = "pseudo", + }, + [22] = { + ["id"] = "pseudo.pseudo_total_energy_shield", + ["text"] = "+# total maximum Energy Shield", + ["type"] = "pseudo", + }, + [23] = { + ["id"] = "pseudo.pseudo_total_life", + ["text"] = "+# total maximum Life", + ["type"] = "pseudo", + }, + [24] = { + ["id"] = "pseudo.pseudo_total_mana", + ["text"] = "+# total maximum Mana", + ["type"] = "pseudo", + }, + [25] = { + ["id"] = "pseudo.pseudo_total_attributes", + ["text"] = "+# total to Attributes", + ["type"] = "pseudo", + }, + [26] = { + ["id"] = "pseudo.pseudo_total_dexterity", + ["text"] = "+# total to Dexterity", + ["type"] = "pseudo", + }, + [27] = { + ["id"] = "pseudo.pseudo_total_intelligence", + ["text"] = "+# total to Intelligence", + ["type"] = "pseudo", + }, + [28] = { + ["id"] = "pseudo.pseudo_total_strength", + ["text"] = "+# total to Strength", + ["type"] = "pseudo", + }, + [29] = { + ["id"] = "pseudo.pseudo_total_all_attributes", + ["text"] = "+# total to all Attributes", + ["type"] = "pseudo", + }, + [30] = { + ["id"] = "pseudo.pseudo_total_elemental_resistance", + ["text"] = "+#% total Elemental Resistance", + ["type"] = "pseudo", + }, + [31] = { + ["id"] = "pseudo.pseudo_total_resistance", + ["text"] = "+#% total Resistance", + ["type"] = "pseudo", + }, + [32] = { + ["id"] = "pseudo.pseudo_total_chaos_resistance", + ["text"] = "+#% total to Chaos Resistance", + ["type"] = "pseudo", + }, + [33] = { + ["id"] = "pseudo.pseudo_total_cold_resistance", + ["text"] = "+#% total to Cold Resistance", + ["type"] = "pseudo", + }, + [34] = { + ["id"] = "pseudo.pseudo_total_fire_resistance", + ["text"] = "+#% total to Fire Resistance", + ["type"] = "pseudo", + }, + [35] = { + ["id"] = "pseudo.pseudo_total_lightning_resistance", + ["text"] = "+#% total to Lightning Resistance", + ["type"] = "pseudo", + }, + [36] = { + ["id"] = "pseudo.pseudo_total_all_elemental_resistances", + ["text"] = "+#% total to all Elemental Resistances", + ["type"] = "pseudo", + }, + }, + ["id"] = "pseudo", + ["label"] = "Pseudo", + }, + [2] = { + ["entries"] = { + [1] = { + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + [2] = { + ["id"] = "explicit.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "explicit", + }, + [3] = { + ["id"] = "explicit.stat_1133453872", + ["text"] = "# Dexterity Requirement", + ["type"] = "explicit", + }, + [4] = { + ["id"] = "explicit.stat_2153364323", + ["text"] = "# Intelligence Requirement", + ["type"] = "explicit", + }, + [5] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + [6] = { + ["id"] = "explicit.stat_332337290", + ["text"] = "# Life Regeneration per second per Socket filled", + ["type"] = "explicit", + }, + [7] = { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + [8] = { + ["id"] = "explicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", + ["type"] = "explicit", + }, + [9] = { + ["id"] = "explicit.stat_321765853", + ["text"] = "# Physical Damage taken from Hits", + ["type"] = "explicit", + }, + [10] = { + ["id"] = "explicit.stat_4176970656", + ["text"] = "# Physical Damage taken on Minion Death", + ["type"] = "explicit", + }, + [11] = { + ["id"] = "explicit.stat_3612407781", + ["text"] = "# Physical damage taken from Projectile Attacks", + ["type"] = "explicit", + }, + [12] = { + ["id"] = "explicit.stat_2833226514", + ["text"] = "# Strength Requirement", + ["type"] = "explicit", + }, + [13] = { + ["id"] = "explicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "explicit", + }, + [14] = { + ["id"] = "explicit.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["type"] = "explicit", + }, + [15] = { + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "explicit", + }, + [16] = { + ["id"] = "explicit.stat_3350232544", + ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", + ["type"] = "explicit", + }, + [17] = { + ["id"] = "explicit.stat_57896763", + ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", + ["type"] = "explicit", + }, + [18] = { + ["id"] = "explicit.stat_3273962791", + ["text"] = "# metres to Melee Strike Range while Unarmed", + ["type"] = "explicit", + }, + [19] = { + ["id"] = "explicit.stat_4186798932", + ["text"] = "# to # Added Attack Fire Damage per 25 Strength", + ["type"] = "explicit", + }, + [20] = { + ["id"] = "explicit.stat_1515531208", + ["text"] = "# to # Cold Thorns damage", + ["type"] = "explicit", + }, + [21] = { + ["id"] = "explicit.stat_1993950627", + ["text"] = "# to # Fire Thorns damage", + ["type"] = "explicit", + }, + [22] = { + ["id"] = "explicit.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["type"] = "explicit", + }, + [23] = { + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + [24] = { + ["id"] = "explicit.stat_3926910174", + ["text"] = "# to # added Physical Thorns damage per Runic Plate", + ["type"] = "explicit", + }, + [25] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + [26] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + [27] = { + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", + ["type"] = "explicit", + }, + [28] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + [29] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + [30] = { + ["id"] = "explicit.stat_1207006772", + ["text"] = "# to Deflection Rating per 50 missing Energy Shield", + ["type"] = "explicit", + }, + [31] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + [32] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + [33] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + [34] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + [35] = { + ["id"] = "explicit.stat_3470876581", + ["text"] = "# to Evasion Rating while on Low Life", + ["type"] = "explicit", + }, + [36] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + [37] = { + ["id"] = "explicit.stat_2157870819", + ["text"] = "# to Level of Despair Skills", + ["type"] = "explicit", + }, + [38] = { + ["id"] = "explicit.stat_3709513762", + ["text"] = "# to Level of Elemental Weakness Skills", + ["type"] = "explicit", + }, + [39] = { + ["id"] = "explicit.stat_3948285912", + ["text"] = "# to Level of Enfeeble Skills", + ["type"] = "explicit", + }, + [40] = { + ["id"] = "explicit.stat_1042153418", + ["text"] = "# to Level of Temporal Chains Skills", + ["type"] = "explicit", + }, + [41] = { + ["id"] = "explicit.stat_3507701584", + ["text"] = "# to Level of Vulnerability Skills", + ["type"] = "explicit", + }, + [42] = { + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "explicit", + }, + [43] = { + ["id"] = "explicit.stat_67169579", + ["text"] = "# to Level of all Chaos Skills", + ["type"] = "explicit", + }, + [44] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", + }, + [45] = { + ["id"] = "explicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", + ["type"] = "explicit", + }, + [46] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", + }, + [47] = { + ["id"] = "explicit.stat_2061237517", + ["text"] = "# to Level of all Corrupted Spell Skill Gems", + ["type"] = "explicit", + }, + [48] = { + ["id"] = "explicit.stat_805298720", + ["text"] = "# to Level of all Curse Skills", + ["type"] = "explicit", + }, + [49] = { + ["id"] = "explicit.stat_2901213448", + ["text"] = "# to Level of all Elemental Skills", + ["type"] = "explicit", + }, + [50] = { + ["id"] = "explicit.stat_599749213", + ["text"] = "# to Level of all Fire Skills", + ["type"] = "explicit", + }, + [51] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "explicit", + }, + [52] = { + ["id"] = "explicit.stat_1147690586", + ["text"] = "# to Level of all Lightning Skills", + ["type"] = "explicit", + }, + [53] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", + }, + [54] = { + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", + ["type"] = "explicit", + }, + [55] = { + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "explicit", + }, + [56] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", + }, + [57] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "explicit", + }, + [58] = { + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", + }, + [59] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "explicit", + }, + [60] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + [61] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + [62] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + [63] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "explicit", + }, + [64] = { + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", + }, + [65] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + [66] = { + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + [67] = { + ["id"] = "explicit.stat_2694614739", + ["text"] = "# to Spirit while you have at least 200 Dexterity", + ["type"] = "explicit", + }, + [68] = { + ["id"] = "explicit.stat_1282318918", + ["text"] = "# to Spirit while you have at least 200 Intelligence", + ["type"] = "explicit", + }, + [69] = { + ["id"] = "explicit.stat_3044685077", + ["text"] = "# to Spirit while you have at least 200 Strength", + ["type"] = "explicit", + }, + [70] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + [71] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + [72] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + [73] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + [74] = { + ["id"] = "explicit.stat_3679769182", + ["text"] = "# to Stun Threshold per Socket filled", + ["type"] = "explicit", + }, + [75] = { + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + [76] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + [77] = { + ["id"] = "explicit.stat_2333085568", + ["text"] = "# to all Attributes per Level", + ["type"] = "explicit", + }, + [78] = { + ["id"] = "explicit.stat_3474271079", + ["text"] = "# to all Attributes per Socket filled", + ["type"] = "explicit", + }, + [79] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + [80] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + [81] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + [82] = { + ["id"] = "explicit.stat_150391334", + ["text"] = "# to maximum Life per Socket filled", + ["type"] = "explicit", + }, + [83] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + [84] = { + ["id"] = "explicit.stat_1036267537", + ["text"] = "# to maximum Mana per Socket filled", + ["type"] = "explicit", + }, + [85] = { + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + [86] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + [87] = { + ["id"] = "explicit.stat_1896726125", + ["text"] = "# to maximum Valour", + ["type"] = "explicit", + }, + [88] = { + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "explicit", + }, + [89] = { + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", + }, + [90] = { + ["id"] = "explicit.stat_429867172", + ["text"] = "# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [91] = { + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["type"] = "explicit", + }, + [92] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on Hit", + ["type"] = "explicit", + }, + [93] = { + ["id"] = "explicit.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["type"] = "explicit", + }, + [94] = { + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", + }, + [95] = { + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + [96] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [97] = { + ["id"] = "explicit.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", + ["type"] = "explicit", + }, + [98] = { + ["id"] = "explicit.stat_1618482990", + ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", + ["type"] = "explicit", + }, + [99] = { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + [100] = { + ["id"] = "explicit.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["type"] = "explicit", + }, + [101] = { + ["id"] = "explicit.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "explicit", + }, + [102] = { + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", + ["type"] = "explicit", + }, + [103] = { + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "explicit", + }, + [104] = { + ["id"] = "explicit.stat_1157523820", + ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", + ["type"] = "explicit", + }, + [105] = { + ["id"] = "explicit.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "explicit", + }, + [106] = { + ["id"] = "explicit.stat_1133346493", + ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", + ["type"] = "explicit", + }, + [107] = { + ["id"] = "explicit.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "explicit", + }, + [108] = { + ["id"] = "explicit.stat_4224832423", + ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", + ["type"] = "explicit", + }, + [109] = { + ["id"] = "explicit.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["type"] = "explicit", + }, + [110] = { + ["id"] = "explicit.stat_2710292678", + ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["type"] = "explicit", + }, + [111] = { + ["id"] = "explicit.stat_1009412152", + ["text"] = "#% chance to Aggravate Bleeding on Hit", + ["type"] = "explicit", + }, + [112] = { + ["id"] = "explicit.stat_2438634449", + ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + ["type"] = "explicit", + }, + [113] = { + ["id"] = "explicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "explicit", + }, + [114] = { + ["id"] = "explicit.stat_1563503803", + ["text"] = "#% chance to Avoid Chaos Damage from Hits", + ["type"] = "explicit", + }, + [115] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + [116] = { + ["id"] = "explicit.stat_1689729380", + ["text"] = "#% chance to Avoid Death from Hits", + ["type"] = "explicit", + }, + [117] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + [118] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + [119] = { + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", + }, + [120] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + [121] = { + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "explicit", + }, + [122] = { + ["id"] = "explicit.stat_3830953767", + ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", + ["type"] = "explicit", + }, + [123] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["type"] = "explicit", + }, + [124] = { + ["id"] = "explicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + [125] = { + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + [126] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + [127] = { + ["id"] = "explicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "explicit", + }, + [128] = { + ["id"] = "explicit.stat_1493211587", + ["text"] = "#% chance to Poison on Hit with Spell Damage", + ["type"] = "explicit", + }, + [129] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "explicit", + }, + [130] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + [131] = { + ["id"] = "explicit.stat_4250009622", + ["text"] = "#% chance to be Poisoned", + ["type"] = "explicit", + }, + [132] = { + ["id"] = "explicit.stat_3423694372", + ["text"] = "#% chance to be inflicted with Bleeding when Hit", + ["type"] = "explicit", + }, + [133] = { + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "explicit", + }, + [134] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + [135] = { + ["id"] = "explicit.stat_2880019685", + ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["type"] = "explicit", + }, + [136] = { + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "explicit", + }, + [137] = { + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + [138] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + [139] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["type"] = "explicit", + }, + [140] = { + ["id"] = "explicit.stat_1453197917", + ["text"] = "#% chance to gain a Power Charge on Hit", + ["type"] = "explicit", + }, + [141] = { + ["id"] = "explicit.stat_504210122", + ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", + ["type"] = "explicit", + }, + [142] = { + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [143] = { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Exposure on Hit", + ["type"] = "explicit", + }, + [144] = { + ["id"] = "explicit.stat_3823990000", + ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", + ["type"] = "explicit", + }, + [145] = { + ["id"] = "explicit.stat_965913123", + ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", + ["type"] = "explicit", + }, + [146] = { + ["id"] = "explicit.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["type"] = "explicit", + }, + [147] = { + ["id"] = "explicit.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "explicit", + }, + [148] = { + ["id"] = "explicit.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["type"] = "explicit", + }, + [149] = { + ["id"] = "explicit.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["type"] = "explicit", + }, + [150] = { + ["id"] = "explicit.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "explicit", + }, + [151] = { + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + [152] = { + ["id"] = "explicit.stat_504054855", + ["text"] = "#% faster Dodge Roll", + ["type"] = "explicit", + }, + [153] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + [154] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", + }, + [155] = { + ["id"] = "explicit.stat_4255854327", + ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + ["type"] = "explicit", + }, + [156] = { + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + [157] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + [158] = { + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", + }, + [159] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + [160] = { + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", + }, + [161] = { + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + [162] = { + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["type"] = "explicit", + }, + [163] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + [164] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + [165] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + [166] = { + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", + }, + [167] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + [168] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + [169] = { + ["id"] = "explicit.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "explicit", + }, + [170] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [171] = { + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + [172] = { + ["id"] = "explicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "explicit", + }, + [173] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + [174] = { + ["id"] = "explicit.stat_2879725899", + ["text"] = "#% increased Attack Damage while Surrounded", + ["type"] = "explicit", + }, + [175] = { + ["id"] = "explicit.stat_2462683918", + ["text"] = "#% increased Attack Damage while not on Low Mana", + ["type"] = "explicit", + }, + [176] = { + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "explicit", + }, + [177] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + [178] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + [179] = { + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + [180] = { + ["id"] = "explicit.stat_720908147", + ["text"] = "#% increased Attack Speed per 20 Dexterity", + ["type"] = "explicit", + }, + [181] = { + ["id"] = "explicit.stat_324579579", + ["text"] = "#% increased Attack Speed per 20 Spirit", + ["type"] = "explicit", + }, + [182] = { + ["id"] = "explicit.stat_2241560081", + ["text"] = "#% increased Attack Speed per 25 Dexterity", + ["type"] = "explicit", + }, + [183] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["type"] = "explicit", + }, + [184] = { + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "explicit", + }, + [185] = { + ["id"] = "explicit.stat_4145314483", + ["text"] = "#% increased Attack Speed while on Full Mana", + ["type"] = "explicit", + }, + [186] = { + ["id"] = "explicit.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["type"] = "explicit", + }, + [187] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + [188] = { + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + [189] = { + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + [190] = { + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + [191] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [192] = { + ["id"] = "explicit.stat_3910614548", + ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", + ["type"] = "explicit", + }, + [193] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + [194] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + [195] = { + ["id"] = "explicit.stat_2513318031", + ["text"] = "#% increased Attributes per Socket filled", + ["type"] = "explicit", + }, + [196] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + [197] = { + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + [198] = { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + [199] = { + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", + }, + [200] = { + ["id"] = "explicit.stat_3583542124", + ["text"] = "#% increased Block chance against Projectiles", + ["type"] = "explicit", + }, + [201] = { + ["id"] = "explicit.stat_2531622767", + ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", + ["type"] = "explicit", + }, + [202] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + [203] = { + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + [204] = { + ["id"] = "explicit.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "explicit", + }, + [205] = { + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [206] = { + ["id"] = "explicit.stat_34174842", + ["text"] = "#% increased Cast Speed per 20 Spirit", + ["type"] = "explicit", + }, + [207] = { + ["id"] = "explicit.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", + ["type"] = "explicit", + }, + [208] = { + ["id"] = "explicit.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "explicit", + }, + [209] = { + ["id"] = "explicit.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", + ["type"] = "explicit", + }, + [210] = { + ["id"] = "explicit.stat_892489594", + ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", + ["type"] = "explicit", + }, + [211] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + [212] = { + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", + ["type"] = "explicit", + }, + [213] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + [214] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + [215] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + [216] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + [217] = { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + [218] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + [219] = { + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [220] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [221] = { + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "explicit", + }, + [222] = { + ["id"] = "explicit.stat_1571268546", + ["text"] = "#% increased Corrupted Charms effect duration", + ["type"] = "explicit", + }, + [223] = { + ["id"] = "explicit.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "explicit", + }, + [224] = { + ["id"] = "explicit.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", + ["type"] = "explicit", + }, + [225] = { + ["id"] = "explicit.stat_2369495153", + ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + ["type"] = "explicit", + }, + [226] = { + ["id"] = "explicit.stat_2650053239", + ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", + ["type"] = "explicit", + }, + [227] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [228] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + [229] = { + ["id"] = "explicit.stat_23669307", + ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", + ["type"] = "explicit", + }, + [230] = { + ["id"] = "explicit.stat_4164870816", + ["text"] = "#% increased Critical Damage Bonus per Power Charge", + ["type"] = "explicit", + }, + [231] = { + ["id"] = "explicit.stat_2408983956", + ["text"] = "#% increased Critical Damage Bonus while Shocked", + ["type"] = "explicit", + }, + [232] = { + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + [233] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [234] = { + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "explicit", + }, + [235] = { + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + [236] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + [237] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [238] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + [239] = { + ["id"] = "explicit.stat_2972244965", + ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + ["type"] = "explicit", + }, + [240] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + [241] = { + ["id"] = "explicit.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", + ["type"] = "explicit", + }, + [242] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + [243] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", + }, + [244] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + [245] = { + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + [246] = { + ["id"] = "explicit.stat_3120508478", + ["text"] = "#% increased Damage against Immobilised Enemies", + ["type"] = "explicit", + }, + [247] = { + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + [248] = { + ["id"] = "explicit.stat_3399499561", + ["text"] = "#% increased Damage per Minion", + ["type"] = "explicit", + }, + [249] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + [250] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + [251] = { + ["id"] = "explicit.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", + ["type"] = "explicit", + }, + [252] = { + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + [253] = { + ["id"] = "explicit.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", + ["type"] = "explicit", + }, + [254] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + [255] = { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + [256] = { + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", + }, + [257] = { + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + [258] = { + ["id"] = "explicit.stat_4015438188", + ["text"] = "#% increased Damage with Hits against targets in your Presence", + ["type"] = "explicit", + }, + [259] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", + }, + [260] = { + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + [261] = { + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + [262] = { + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", + }, + [263] = { + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", + }, + [264] = { + ["id"] = "explicit.stat_1949833742", + ["text"] = "#% increased Daze Buildup", + ["type"] = "explicit", + }, + [265] = { + ["id"] = "explicit.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "explicit", + }, + [266] = { + ["id"] = "explicit.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "explicit", + }, + [267] = { + ["id"] = "explicit.stat_586037801", + ["text"] = "#% increased Desecrated Modifier magnitudes", + ["type"] = "explicit", + }, + [268] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + [269] = { + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", + }, + [270] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration (Flask)", + ["type"] = "explicit", + }, + [271] = { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "explicit", + }, + [272] = { + ["id"] = "explicit.stat_2920970371", + ["text"] = "#% increased Duration of Curses on you", + ["type"] = "explicit", + }, + [273] = { + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + [274] = { + ["id"] = "explicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "explicit", + }, + [275] = { + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + [276] = { + ["id"] = "explicit.stat_3841138199", + ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [277] = { + ["id"] = "explicit.stat_461663422", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", + ["type"] = "explicit", + }, + [278] = { + ["id"] = "explicit.stat_3128077011", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", + ["type"] = "explicit", + }, + [279] = { + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + [280] = { + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "explicit", + }, + [281] = { + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in Area", + ["type"] = "explicit", + }, + [282] = { + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in your Maps", + ["type"] = "explicit", + }, + [283] = { + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + [284] = { + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "explicit", + }, + [285] = { + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + [286] = { + ["id"] = "explicit.stat_2065500219", + ["text"] = "#% increased Effectiveness of Monsters in your Maps", + ["type"] = "explicit", + }, + [287] = { + ["id"] = "explicit.stat_2895378479", + ["text"] = "#% increased Effectiveness of Rare Breach Monsters", + ["type"] = "explicit", + }, + [288] = { + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [289] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + [290] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + [291] = { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + [292] = { + ["id"] = "explicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "explicit", + }, + [293] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + [294] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [295] = { + ["id"] = "explicit.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["type"] = "explicit", + }, + [296] = { + ["id"] = "explicit.stat_2408276841", + ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", + ["type"] = "explicit", + }, + [297] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + [298] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + [299] = { + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + [300] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + [301] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + [302] = { + ["id"] = "explicit.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "explicit", + }, + [303] = { + ["id"] = "explicit.stat_1073310669", + ["text"] = "#% increased Evasion Rating if you have been Hit Recently", + ["type"] = "explicit", + }, + [304] = { + ["id"] = "explicit.stat_1040569494", + ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", + ["type"] = "explicit", + }, + [305] = { + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Evasion Rating when on Full Life", + ["type"] = "explicit", + }, + [306] = { + ["id"] = "explicit.stat_1586136369", + ["text"] = "#% increased Evasion Rating while Sprinting", + ["type"] = "explicit", + }, + [307] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + [308] = { + ["id"] = "explicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", + ["type"] = "explicit", + }, + [309] = { + ["id"] = "explicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", + ["type"] = "explicit", + }, + [310] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + [311] = { + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + [312] = { + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", + ["type"] = "explicit", + }, + [313] = { + ["id"] = "explicit.stat_231689132", + ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", + ["type"] = "explicit", + }, + [314] = { + ["id"] = "explicit.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["type"] = "explicit", + }, + [315] = { + ["id"] = "explicit.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["type"] = "explicit", + }, + [316] = { + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "explicit", + }, + [317] = { + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "explicit", + }, + [318] = { + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", + }, + [319] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + [320] = { + ["id"] = "explicit.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [321] = { + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [322] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + [323] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + [324] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + [325] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + [326] = { + ["id"] = "explicit.stat_551040294", + ["text"] = "#% increased Fracturing Mirrors manifested within Delirium Fog", + ["type"] = "explicit", + }, + [327] = { + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + [328] = { + ["id"] = "explicit.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["type"] = "explicit", + }, + [329] = { + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + [330] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + [331] = { + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", + }, + [332] = { + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [333] = { + ["id"] = "explicit.stat_933768533", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", + ["type"] = "explicit", + }, + [334] = { + ["id"] = "explicit.stat_2695354435", + ["text"] = "#% increased Global Evasion Rating when on Low Life", + ["type"] = "explicit", + }, + [335] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + [336] = { + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", + }, + [337] = { + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + [338] = { + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in this Area", + ["type"] = "explicit", + }, + [339] = { + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["type"] = "explicit", + }, + [340] = { + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in your Maps", + ["type"] = "explicit", + }, + [341] = { + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["type"] = "explicit", + }, + [342] = { + ["id"] = "explicit.stat_3131442032", + ["text"] = "#% increased Grenade Damage", + ["type"] = "explicit", + }, + [343] = { + ["id"] = "explicit.stat_1365232741", + ["text"] = "#% increased Grenade Duration", + ["type"] = "explicit", + }, + [344] = { + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", + }, + [345] = { + ["id"] = "explicit.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", + ["type"] = "explicit", + }, + [346] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + [347] = { + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", + }, + [348] = { + ["id"] = "explicit.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "explicit", + }, + [349] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + [350] = { + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + [351] = { + ["id"] = "explicit.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "explicit", + }, + [352] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + [353] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + [354] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + [355] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + [356] = { + ["id"] = "explicit.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", + ["type"] = "explicit", + }, + [357] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [358] = { + ["id"] = "explicit.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["type"] = "explicit", + }, + [359] = { + ["id"] = "explicit.stat_3084372306", + ["text"] = "#% increased Life Regeneration rate while Surrounded", + ["type"] = "explicit", + }, + [360] = { + ["id"] = "explicit.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [361] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + [362] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + [363] = { + ["id"] = "explicit.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [364] = { + ["id"] = "explicit.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "explicit", + }, + [365] = { + ["id"] = "explicit.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", + ["type"] = "explicit", + }, + [366] = { + ["id"] = "explicit.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["type"] = "explicit", + }, + [367] = { + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + [368] = { + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + [369] = { + ["id"] = "explicit.stat_828179689", + ["text"] = "#% increased Magnitude of Chill you inflict", + ["type"] = "explicit", + }, + [370] = { + ["id"] = "explicit.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "explicit", + }, + [371] = { + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + [372] = { + ["id"] = "explicit.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "explicit", + }, + [373] = { + ["id"] = "explicit.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["type"] = "explicit", + }, + [374] = { + ["id"] = "explicit.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["type"] = "explicit", + }, + [375] = { + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + [376] = { + ["id"] = "explicit.stat_1864159246", + ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", + ["type"] = "explicit", + }, + [377] = { + ["id"] = "explicit.stat_120969026", + ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", + ["type"] = "explicit", + }, + [378] = { + ["id"] = "explicit.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [379] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + [380] = { + ["id"] = "explicit.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["type"] = "explicit", + }, + [381] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + [382] = { + ["id"] = "explicit.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["type"] = "explicit", + }, + [383] = { + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", + }, + [384] = { + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + [385] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + [386] = { + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [387] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + [388] = { + ["id"] = "explicit.stat_1659564104", + ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [389] = { + ["id"] = "explicit.stat_344174146", + ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", + ["type"] = "explicit", + }, + [390] = { + ["id"] = "explicit.stat_1895238057", + ["text"] = "#% increased Mana Regeneration Rate while Surrounded", + ["type"] = "explicit", + }, + [391] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + [392] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + [393] = { + ["id"] = "explicit.stat_2702182380", + ["text"] = "#% increased Maximum Life per Socket filled", + ["type"] = "explicit", + }, + [394] = { + ["id"] = "explicit.stat_332217711", + ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [395] = { + ["id"] = "explicit.stat_911712882", + ["text"] = "#% increased Maximum Mana per Socket filled", + ["type"] = "explicit", + }, + [396] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + [397] = { + ["id"] = "explicit.stat_2677352961", + ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", + ["type"] = "explicit", + }, + [398] = { + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + [399] = { + ["id"] = "explicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "explicit", + }, + [400] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + [401] = { + ["id"] = "explicit.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "explicit", + }, + [402] = { + ["id"] = "explicit.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "explicit", + }, + [403] = { + ["id"] = "explicit.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "explicit", + }, + [404] = { + ["id"] = "explicit.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "explicit", + }, + [405] = { + ["id"] = "explicit.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "explicit", + }, + [406] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + [407] = { + ["id"] = "explicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "explicit", + }, + [408] = { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "explicit", + }, + [409] = { + ["id"] = "explicit.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "explicit", + }, + [410] = { + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "explicit", + }, + [411] = { + ["id"] = "explicit.stat_610276769", + ["text"] = "#% increased Movement Speed while affected by an Ailment", + ["type"] = "explicit", + }, + [412] = { + ["id"] = "explicit.stat_2017682521", + ["text"] = "#% increased Pack Size", + ["type"] = "explicit", + }, + [413] = { + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + [414] = { + ["id"] = "explicit.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "explicit", + }, + [415] = { + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", + }, + [416] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + [417] = { + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + [418] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + [419] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + [420] = { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + [421] = { + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", + }, + [422] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + [423] = { + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + [424] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + [425] = { + ["id"] = "explicit.stat_3359797958", + ["text"] = "#% increased Projectile Speed for Spell Skills", + ["type"] = "explicit", + }, + [426] = { + ["id"] = "explicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", + ["type"] = "explicit", + }, + [427] = { + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", + ["type"] = "explicit", + }, + [428] = { + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", + ["type"] = "explicit", + }, + [429] = { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", + ["type"] = "explicit", + }, + [430] = { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", + ["type"] = "explicit", + }, + [431] = { + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + [432] = { + ["id"] = "explicit.stat_3119172063", + ["text"] = "#% increased Quantity of Items dropped by Map Bosses", + ["type"] = "explicit", + }, + [433] = { + ["id"] = "explicit.stat_2390685262", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "explicit", + }, + [434] = { + ["id"] = "explicit.stat_1457896329", + ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", + ["type"] = "explicit", + }, + [435] = { + ["id"] = "explicit.stat_2777224821", + ["text"] = "#% increased Quantity of Waystones found", + ["type"] = "explicit", + }, + [436] = { + ["id"] = "explicit.stat_472809816", + ["text"] = "#% increased Quantity of Wombgifts found", + ["type"] = "explicit", + }, + [437] = { + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", + ["type"] = "explicit", + }, + [438] = { + ["id"] = "explicit.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "explicit", + }, + [439] = { + ["id"] = "explicit.stat_21824003", + ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + ["type"] = "explicit", + }, + [440] = { + ["id"] = "explicit.stat_4255069232", + ["text"] = "#% increased Rarity of Items dropped by Map Bosses", + ["type"] = "explicit", + }, + [441] = { + ["id"] = "explicit.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + [442] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + [443] = { + ["id"] = "explicit.stat_1602191394", + ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", + ["type"] = "explicit", + }, + [444] = { + ["id"] = "explicit.stat_313223231", + ["text"] = "#% increased Rarity of Items found per Socket filled", + ["type"] = "explicit", + }, + [445] = { + ["id"] = "explicit.stat_2929867083", + ["text"] = "#% increased Rarity of Items found when on Low Life", + ["type"] = "explicit", + }, + [446] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + [447] = { + ["id"] = "explicit.stat_710476746", + ["text"] = "#% increased Reload Speed", + ["type"] = "explicit", + }, + [448] = { + ["id"] = "explicit.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["type"] = "explicit", + }, + [449] = { + ["id"] = "explicit.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["type"] = "explicit", + }, + [450] = { + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "explicit", + }, + [451] = { + ["id"] = "explicit.stat_1350127730", + ["text"] = "#% increased Reservation Efficiency of Remnant Skills", + ["type"] = "explicit", + }, + [452] = { + ["id"] = "explicit.stat_2308632835", + ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", + ["type"] = "explicit", + }, + [453] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "explicit", + }, + [454] = { + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", + }, + [455] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", + }, + [456] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [457] = { + ["id"] = "explicit.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "explicit", + }, + [458] = { + ["id"] = "explicit.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [459] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + [460] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + [461] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + [462] = { + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + [463] = { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + [464] = { + ["id"] = "explicit.stat_2412053423", + ["text"] = "#% increased Spell Damage per 10 Spirit", + ["type"] = "explicit", + }, + [465] = { + ["id"] = "explicit.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["type"] = "explicit", + }, + [466] = { + ["id"] = "explicit.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["type"] = "explicit", + }, + [467] = { + ["id"] = "explicit.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["type"] = "explicit", + }, + [468] = { + ["id"] = "explicit.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["type"] = "explicit", + }, + [469] = { + ["id"] = "explicit.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["type"] = "explicit", + }, + [470] = { + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + [471] = { + ["id"] = "explicit.stat_347220474", + ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", + ["type"] = "explicit", + }, + [472] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + [473] = { + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + [474] = { + ["id"] = "explicit.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", + ["type"] = "explicit", + }, + [475] = { + ["id"] = "explicit.stat_3581035970", + ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + ["type"] = "explicit", + }, + [476] = { + ["id"] = "explicit.stat_1430165758", + ["text"] = "#% increased Spirit per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [477] = { + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["type"] = "explicit", + }, + [478] = { + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["type"] = "explicit", + }, + [479] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + [480] = { + ["id"] = "explicit.stat_295075366", + ["text"] = "#% increased Strength Requirement", + ["type"] = "explicit", + }, + [481] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + [482] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + [483] = { + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + [484] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun Recovery", + ["type"] = "explicit", + }, + [485] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + [486] = { + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + [487] = { + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + [488] = { + ["id"] = "explicit.stat_909236563", + ["text"] = "#% increased Surrounded Area of Effect", + ["type"] = "explicit", + }, + [489] = { + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", + }, + [490] = { + ["id"] = "explicit.stat_806994543", + ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", + ["type"] = "explicit", + }, + [491] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + [492] = { + ["id"] = "explicit.stat_2639983772", + ["text"] = "#% increased Totem Damage per Curse on you", + ["type"] = "explicit", + }, + [493] = { + ["id"] = "explicit.stat_2357996603", + ["text"] = "#% increased Totem Duration", + ["type"] = "explicit", + }, + [494] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + [495] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + [496] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + [497] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [498] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + [499] = { + ["id"] = "explicit.stat_1791136590", + ["text"] = "#% increased Weapon Damage per 10 Strength", + ["type"] = "explicit", + }, + [500] = { + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + [501] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + [502] = { + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", + }, + [503] = { + ["id"] = "explicit.stat_3843204146", + ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [504] = { + ["id"] = "explicit.stat_2898517796", + ["text"] = "#% increased amount of Magic Chests", + ["type"] = "explicit", + }, + [505] = { + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + [506] = { + ["id"] = "explicit.stat_798469000", + ["text"] = "#% increased amount of Rare Chests", + ["type"] = "explicit", + }, + [507] = { + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + [508] = { + ["id"] = "explicit.stat_2793222406", + ["text"] = "#% increased bonuses gained from Equipped Rings", + ["type"] = "explicit", + }, + [509] = { + ["id"] = "explicit.stat_513747733", + ["text"] = "#% increased bonuses gained from left Equipped Ring", + ["type"] = "explicit", + }, + [510] = { + ["id"] = "explicit.stat_3885501357", + ["text"] = "#% increased bonuses gained from right Equipped Ring", + ["type"] = "explicit", + }, + [511] = { + ["id"] = "explicit.stat_632698321", + ["text"] = "#% increased chance Vaal Beacons summon additional Monsters", + ["type"] = "explicit", + }, + [512] = { + ["id"] = "explicit.stat_2789248444", + ["text"] = "#% increased chance for Abyssal monsters to have Abyssal Modifiers", + ["type"] = "explicit", + }, + [513] = { + ["id"] = "explicit.stat_3815617979", + ["text"] = "#% increased chance of Azmeri Spirits", + ["type"] = "explicit", + }, + [514] = { + ["id"] = "explicit.stat_1825943485", + ["text"] = "#% increased chance of Essences", + ["type"] = "explicit", + }, + [515] = { + ["id"] = "explicit.stat_1352729973", + ["text"] = "#% increased chance of Rogue Exiles", + ["type"] = "explicit", + }, + [516] = { + ["id"] = "explicit.stat_689816330", + ["text"] = "#% increased chance of Shrines", + ["type"] = "explicit", + }, + [517] = { + ["id"] = "explicit.stat_4279535856", + ["text"] = "#% increased chance of Strongboxes", + ["type"] = "explicit", + }, + [518] = { + ["id"] = "explicit.stat_267210597", + ["text"] = "#% increased chance of Summoning Circles", + ["type"] = "explicit", + }, + [519] = { + ["id"] = "explicit.stat_3481083201", + ["text"] = "#% increased chance to Poison", + ["type"] = "explicit", + }, + [520] = { + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + [521] = { + ["id"] = "explicit.stat_1710200734", + ["text"] = "#% increased chance to find Desecrated Currency", + ["type"] = "explicit", + }, + [522] = { + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + [523] = { + ["id"] = "explicit.stat_2760643568", + ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + ["type"] = "explicit", + }, + [524] = { + ["id"] = "explicit.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", + ["type"] = "explicit", + }, + [525] = { + ["id"] = "explicit.stat_3962960008", + ["text"] = "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", + ["type"] = "explicit", + }, + [526] = { + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "explicit", + }, + [527] = { + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "explicit", + }, + [528] = { + ["id"] = "explicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "explicit", + }, + [529] = { + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "explicit", + }, + [530] = { + ["id"] = "explicit.stat_4065505214", + ["text"] = "#% increased effect of Socketed Soul Cores", + ["type"] = "explicit", + }, + [531] = { + ["id"] = "explicit.stat_878697053", + ["text"] = "#% increased maximum Divinity", + ["type"] = "explicit", + }, + [532] = { + ["id"] = "explicit.stat_2189090852", + ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", + ["type"] = "explicit", + }, + [533] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + [534] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + [535] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + [536] = { + ["id"] = "explicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "explicit", + }, + [537] = { + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs", + ["type"] = "explicit", + }, + [538] = { + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs in your Maps", + ["type"] = "explicit", + }, + [539] = { + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters", + ["type"] = "explicit", + }, + [540] = { + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters in Area", + ["type"] = "explicit", + }, + [541] = { + ["id"] = "explicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + [542] = { + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "explicit", + }, + [543] = { + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["type"] = "explicit", + }, + [544] = { + ["id"] = "explicit.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "explicit", + }, + [545] = { + ["id"] = "explicit.stat_1803659985", + ["text"] = "#% less Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [546] = { + ["id"] = "explicit.stat_1274947822", + ["text"] = "#% less Damage", + ["type"] = "explicit", + }, + [547] = { + ["id"] = "explicit.stat_67637087", + ["text"] = "#% less Damage taken if you have not been Hit Recently", + ["type"] = "explicit", + }, + [548] = { + ["id"] = "explicit.stat_3749630567", + ["text"] = "#% less Flask Charges used", + ["type"] = "explicit", + }, + [549] = { + ["id"] = "explicit.stat_2146799605", + ["text"] = "#% less Movement Speed", + ["type"] = "explicit", + }, + [550] = { + ["id"] = "explicit.stat_3156445245", + ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + ["type"] = "explicit", + }, + [551] = { + ["id"] = "explicit.stat_537850431", + ["text"] = "#% less Spirit", + ["type"] = "explicit", + }, + [552] = { + ["id"] = "explicit.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "explicit", + }, + [553] = { + ["id"] = "explicit.stat_1633735772", + ["text"] = "#% less maximum Life", + ["type"] = "explicit", + }, + [554] = { + ["id"] = "explicit.stat_3045154261", + ["text"] = "#% less maximum Mana", + ["type"] = "explicit", + }, + [555] = { + ["id"] = "explicit.stat_2423248184", + ["text"] = "#% less minimum Physical Attack Damage", + ["type"] = "explicit", + }, + [556] = { + ["id"] = "explicit.stat_3376488707", + ["text"] = "#% maximum Player Resistances", + ["type"] = "explicit", + }, + [557] = { + ["id"] = "explicit.stat_412462523", + ["text"] = "#% more Attack Damage", + ["type"] = "explicit", + }, + [558] = { + ["id"] = "explicit.stat_2939415499", + ["text"] = "#% more Curse Magnitudes", + ["type"] = "explicit", + }, + [559] = { + ["id"] = "explicit.stat_1972661424", + ["text"] = "#% more Life Flask Recovery", + ["type"] = "explicit", + }, + [560] = { + ["id"] = "explicit.stat_1726753705", + ["text"] = "#% more Life Recovered", + ["type"] = "explicit", + }, + [561] = { + ["id"] = "explicit.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "explicit", + }, + [562] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + [563] = { + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + [564] = { + ["id"] = "explicit.stat_3735888493", + ["text"] = "#% more maximum Physical Attack Damage", + ["type"] = "explicit", + }, + [565] = { + ["id"] = "explicit.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "explicit", + }, + [566] = { + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "explicit", + }, + [567] = { + ["id"] = "explicit.stat_2678930256", + ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + ["type"] = "explicit", + }, + [568] = { + ["id"] = "explicit.stat_2369960685", + ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", + ["type"] = "explicit", + }, + [569] = { + ["id"] = "explicit.stat_2020463573", + ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", + ["type"] = "explicit", + }, + [570] = { + ["id"] = "explicit.stat_1686824704", + ["text"] = "#% of Cold Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + [571] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [572] = { + ["id"] = "explicit.stat_2342939473", + ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", + ["type"] = "explicit", + }, + [573] = { + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["type"] = "explicit", + }, + [574] = { + ["id"] = "explicit.stat_3918757604", + ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", + ["type"] = "explicit", + }, + [575] = { + ["id"] = "explicit.stat_1150343007", + ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", + ["type"] = "explicit", + }, + [576] = { + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "explicit", + }, + [577] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + [578] = { + ["id"] = "explicit.stat_679019978", + ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", + ["type"] = "explicit", + }, + [579] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [580] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + [581] = { + ["id"] = "explicit.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + [582] = { + ["id"] = "explicit.stat_3598623697", + ["text"] = "#% of Damage taken during effect Recouped as Life", + ["type"] = "explicit", + }, + [583] = { + ["id"] = "explicit.stat_3471443885", + ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", + ["type"] = "explicit", + }, + [584] = { + ["id"] = "explicit.stat_1311130924", + ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + ["type"] = "explicit", + }, + [585] = { + ["id"] = "explicit.stat_2295988214", + ["text"] = "#% of Elemental Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + [586] = { + ["id"] = "explicit.stat_210092264", + ["text"] = "#% of Elemental Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [587] = { + ["id"] = "explicit.stat_40154188", + ["text"] = "#% of Elemental Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + [588] = { + ["id"] = "explicit.stat_289540902", + ["text"] = "#% of Elemental Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + [589] = { + ["id"] = "explicit.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["type"] = "explicit", + }, + [590] = { + ["id"] = "explicit.stat_1175213674", + ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", + ["type"] = "explicit", + }, + [591] = { + ["id"] = "explicit.stat_3503160529", + ["text"] = "#% of Fire Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [592] = { + ["id"] = "explicit.stat_3205239847", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["type"] = "explicit", + }, + [593] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [594] = { + ["id"] = "explicit.stat_2772033465", + ["text"] = "#% of Fire damage Converted to Lightning damage", + ["type"] = "explicit", + }, + [595] = { + ["id"] = "explicit.stat_4108426433", + ["text"] = "#% of Fire damage taken as Cold damage", + ["type"] = "explicit", + }, + [596] = { + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "explicit", + }, + [597] = { + ["id"] = "explicit.stat_3658708511", + ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", + ["type"] = "explicit", + }, + [598] = { + ["id"] = "explicit.stat_2109189637", + ["text"] = "#% of Lightning Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + [599] = { + ["id"] = "explicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [600] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [601] = { + ["id"] = "explicit.stat_3198708642", + ["text"] = "#% of Lightning damage taken as Cold damage", + ["type"] = "explicit", + }, + [602] = { + ["id"] = "explicit.stat_546201303", + ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + ["type"] = "explicit", + }, + [603] = { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + [604] = { + ["id"] = "explicit.stat_1092987622", + ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", + ["type"] = "explicit", + }, + [605] = { + ["id"] = "explicit.stat_2089152298", + ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [606] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + [607] = { + ["id"] = "explicit.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "explicit", + }, + [608] = { + ["id"] = "explicit.stat_1004468512", + ["text"] = "#% of Physical Damage taken as Fire Damage", + ["type"] = "explicit", + }, + [609] = { + ["id"] = "explicit.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["type"] = "explicit", + }, + [610] = { + ["id"] = "explicit.stat_70760090", + ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", + ["type"] = "explicit", + }, + [611] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical damage from Hits taken as Lightning damage", + ["type"] = "explicit", + }, + [612] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + [613] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [614] = { + ["id"] = "explicit.stat_782941180", + ["text"] = "#% of Spell Damage Leeched as Life", + ["type"] = "explicit", + }, + [615] = { + ["id"] = "explicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "explicit", + }, + [616] = { + ["id"] = "explicit.stat_1753977518", + ["text"] = "#% of Thorns Damage Leeched as Life", + ["type"] = "explicit", + }, + [617] = { + ["id"] = "explicit.stat_3190121041", + ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", + ["type"] = "explicit", + }, + [618] = { + ["id"] = "explicit.stat_3175722882", + ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", + ["type"] = "explicit", + }, + [619] = { + ["id"] = "explicit.stat_4287671144", + ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", + ["type"] = "explicit", + }, + [620] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", + }, + [621] = { + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + [622] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + [623] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + [624] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + [625] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + [626] = { + ["id"] = "explicit.stat_1269971728", + ["text"] = "#% reduced Magnitude of Ignite on you", + ["type"] = "explicit", + }, + [627] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + [628] = { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "explicit", + }, + [629] = { + ["id"] = "explicit.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["type"] = "explicit", + }, + [630] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "explicit", + }, + [631] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "explicit", + }, + [632] = { + ["id"] = "explicit.stat_3122852693", + ["text"] = "#% to Block Chance while holding a Focus", + ["type"] = "explicit", + }, + [633] = { + ["id"] = "explicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "explicit", + }, + [634] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + [635] = { + ["id"] = "explicit.stat_1123023256", + ["text"] = "#% to Chaos Resistance per Socket filled", + ["type"] = "explicit", + }, + [636] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "explicit", + }, + [637] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + [638] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + [639] = { + ["id"] = "explicit.stat_2381897042", + ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["type"] = "explicit", + }, + [640] = { + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "explicit", + }, + [641] = { + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "explicit", + }, + [642] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + [643] = { + ["id"] = "explicit.stat_38301299", + ["text"] = "#% to Fire Resistance while on Low Life", + ["type"] = "explicit", + }, + [644] = { + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "explicit", + }, + [645] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + [646] = { + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + [647] = { + ["id"] = "explicit.stat_4032948616", + ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["type"] = "explicit", + }, + [648] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + [649] = { + ["id"] = "explicit.stat_3753008264", + ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["type"] = "explicit", + }, + [650] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + [651] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + [652] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + [653] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + [654] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + [655] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + [656] = { + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "explicit", + }, + [657] = { + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "explicit", + }, + [658] = { + ["id"] = "explicit.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "explicit", + }, + [659] = { + ["id"] = "explicit.stat_3613173483", + ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", + ["type"] = "explicit", + }, + [660] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + [661] = { + ["id"] = "explicit.stat_2593644209", + ["text"] = "#% to all Elemental Resistances per Power Charge", + ["type"] = "explicit", + }, + [662] = { + ["id"] = "explicit.stat_242161915", + ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [663] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + [664] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "explicit", + }, + [665] = { + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + [666] = { + ["id"] = "explicit.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "explicit", + }, + [667] = { + ["id"] = "explicit.stat_233359425", + ["text"] = "+# maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times", + ["type"] = "explicit", + }, + [668] = { + ["id"] = "explicit.stat_3302775221", + ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + ["type"] = "explicit", + }, + [669] = { + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "explicit", + }, + [670] = { + ["id"] = "explicit.stat_448592698|8", + ["text"] = "+# to Level of all Alchemist's Boon Skills", + ["type"] = "explicit", + }, + [671] = { + ["id"] = "explicit.stat_448592698|208", + ["text"] = "+# to Level of all Ancestral Cry Skills", + ["type"] = "explicit", + }, + [672] = { + ["id"] = "explicit.stat_448592698|21", + ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", + ["type"] = "explicit", + }, + [673] = { + ["id"] = "explicit.stat_448592698|98", + ["text"] = "+# to Level of all Arc Skills", + ["type"] = "explicit", + }, + [674] = { + ["id"] = "explicit.stat_448592698|11", + ["text"] = "+# to Level of all Archmage Skills", + ["type"] = "explicit", + }, + [675] = { + ["id"] = "explicit.stat_448592698|119", + ["text"] = "+# to Level of all Arctic Armour Skills", + ["type"] = "explicit", + }, + [676] = { + ["id"] = "explicit.stat_448592698|237", + ["text"] = "+# to Level of all Arctic Howl Skills", + ["type"] = "explicit", + }, + [677] = { + ["id"] = "explicit.stat_448592698|135", + ["text"] = "+# to Level of all Armour Breaker Skills", + ["type"] = "explicit", + }, + [678] = { + ["id"] = "explicit.stat_448592698|174", + ["text"] = "+# to Level of all Armour Piercing Rounds Skills", + ["type"] = "explicit", + }, + [679] = { + ["id"] = "explicit.stat_448592698|86", + ["text"] = "+# to Level of all Artillery Ballista Skills", + ["type"] = "explicit", + }, + [680] = { + ["id"] = "explicit.stat_448592698|5", + ["text"] = "+# to Level of all Attrition Skills", + ["type"] = "explicit", + }, + [681] = { + ["id"] = "explicit.stat_448592698|30", + ["text"] = "+# to Level of all Ball Lightning Skills", + ["type"] = "explicit", + }, + [682] = { + ["id"] = "explicit.stat_448592698|242", + ["text"] = "+# to Level of all Barkskin Skills", + ["type"] = "explicit", + }, + [683] = { + ["id"] = "explicit.stat_448592698|100", + ["text"] = "+# to Level of all Barrage Skills", + ["type"] = "explicit", + }, + [684] = { + ["id"] = "explicit.stat_448592698|67", + ["text"] = "+# to Level of all Barrier Invocation Skills", + ["type"] = "explicit", + }, + [685] = { + ["id"] = "explicit.stat_448592698|12", + ["text"] = "+# to Level of all Berserk Skills", + ["type"] = "explicit", + }, + [686] = { + ["id"] = "explicit.stat_448592698|63", + ["text"] = "+# to Level of all Blasphemy Skills", + ["type"] = "explicit", + }, + [687] = { + ["id"] = "explicit.stat_448592698|3", + ["text"] = "+# to Level of all Blink Skills", + ["type"] = "explicit", + }, + [688] = { + ["id"] = "explicit.stat_448592698|178", + ["text"] = "+# to Level of all Blood Hunt Skills", + ["type"] = "explicit", + }, + [689] = { + ["id"] = "explicit.stat_448592698|192", + ["text"] = "+# to Level of all Bloodhound's Mark Skills", + ["type"] = "explicit", + }, + [690] = { + ["id"] = "explicit.stat_448592698|145", + ["text"] = "+# to Level of all Bone Cage Skills", + ["type"] = "explicit", + }, + [691] = { + ["id"] = "explicit.stat_448592698|31", + ["text"] = "+# to Level of all Bone Offering Skills", + ["type"] = "explicit", + }, + [692] = { + ["id"] = "explicit.stat_448592698|163", + ["text"] = "+# to Level of all Boneshatter Skills", + ["type"] = "explicit", + }, + [693] = { + ["id"] = "explicit.stat_448592698|107", + ["text"] = "+# to Level of all Bonestorm Skills", + ["type"] = "explicit", + }, + [694] = { + ["id"] = "explicit.stat_448592698|238", + ["text"] = "+# to Level of all Briarpatch Skills", + ["type"] = "explicit", + }, + [695] = { + ["id"] = "explicit.stat_448592698|1", + ["text"] = "+# to Level of all Cast on Critical Skills", + ["type"] = "explicit", + }, + [696] = { + ["id"] = "explicit.stat_448592698|2", + ["text"] = "+# to Level of all Cast on Dodge Skills", + ["type"] = "explicit", + }, + [697] = { + ["id"] = "explicit.stat_448592698|215", + ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", + ["type"] = "explicit", + }, + [698] = { + ["id"] = "explicit.stat_448592698|65", + ["text"] = "+# to Level of all Cast on Freeze Skills", + ["type"] = "explicit", + }, + [699] = { + ["id"] = "explicit.stat_448592698|66", + ["text"] = "+# to Level of all Cast on Ignite Skills", + ["type"] = "explicit", + }, + [700] = { + ["id"] = "explicit.stat_448592698|69", + ["text"] = "+# to Level of all Cast on Minion Death Skills", + ["type"] = "explicit", + }, + [701] = { + ["id"] = "explicit.stat_448592698|64", + ["text"] = "+# to Level of all Cast on Shock Skills", + ["type"] = "explicit", + }, + [702] = { + ["id"] = "explicit.stat_448592698|7", + ["text"] = "+# to Level of all Charge Regulation Skills", + ["type"] = "explicit", + }, + [703] = { + ["id"] = "explicit.stat_448592698|55", + ["text"] = "+# to Level of all Charged Staff Skills", + ["type"] = "explicit", + }, + [704] = { + ["id"] = "explicit.stat_448592698|26", + ["text"] = "+# to Level of all Cluster Grenade Skills", + ["type"] = "explicit", + }, + [705] = { + ["id"] = "explicit.stat_448592698|76", + ["text"] = "+# to Level of all Combat Frenzy Skills", + ["type"] = "explicit", + }, + [706] = { + ["id"] = "explicit.stat_448592698|37", + ["text"] = "+# to Level of all Comet Skills", + ["type"] = "explicit", + }, + [707] = { + ["id"] = "explicit.stat_448592698|82", + ["text"] = "+# to Level of all Conductivity Skills", + ["type"] = "explicit", + }, + [708] = { + ["id"] = "explicit.stat_448592698|159", + ["text"] = "+# to Level of all Contagion Skills", + ["type"] = "explicit", + }, + [709] = { + ["id"] = "explicit.stat_448592698|202", + ["text"] = "+# to Level of all Convalescence Skills", + ["type"] = "explicit", + }, + [710] = { + ["id"] = "explicit.stat_448592698|232", + ["text"] = "+# to Level of all Cross Slash Skills", + ["type"] = "explicit", + }, + [711] = { + ["id"] = "explicit.stat_448592698|203", + ["text"] = "+# to Level of all Cull The Weak Skills", + ["type"] = "explicit", + }, + [712] = { + ["id"] = "explicit.stat_448592698|58", + ["text"] = "+# to Level of all Dark Effigy Skills", + ["type"] = "explicit", + }, + [713] = { + ["id"] = "explicit.stat_448592698|70", + ["text"] = "+# to Level of all Defiance Banner Skills", + ["type"] = "explicit", + }, + [714] = { + ["id"] = "explicit.stat_448592698|46", + ["text"] = "+# to Level of all Despair Skills", + ["type"] = "explicit", + }, + [715] = { + ["id"] = "explicit.stat_448592698|78", + ["text"] = "+# to Level of all Detonate Dead Skills", + ["type"] = "explicit", + }, + [716] = { + ["id"] = "explicit.stat_448592698|56", + ["text"] = "+# to Level of all Detonating Arrow Skills", + ["type"] = "explicit", + }, + [717] = { + ["id"] = "explicit.stat_448592698|234", + ["text"] = "+# to Level of all Devour Skills", + ["type"] = "explicit", + }, + [718] = { + ["id"] = "explicit.stat_448592698|177", + ["text"] = "+# to Level of all Disengage Skills", + ["type"] = "explicit", + }, + [719] = { + ["id"] = "explicit.stat_448592698|4", + ["text"] = "+# to Level of all Dread Banner Skills", + ["type"] = "explicit", + }, + [720] = { + ["id"] = "explicit.stat_448592698|158", + ["text"] = "+# to Level of all Earthquake Skills", + ["type"] = "explicit", + }, + [721] = { + ["id"] = "explicit.stat_448592698|84", + ["text"] = "+# to Level of all Earthshatter Skills", + ["type"] = "explicit", + }, + [722] = { + ["id"] = "explicit.stat_448592698|110", + ["text"] = "+# to Level of all Electrocuting Arrow Skills", + ["type"] = "explicit", + }, + [723] = { + ["id"] = "explicit.stat_448592698|6", + ["text"] = "+# to Level of all Elemental Conflux Skills", + ["type"] = "explicit", + }, + [724] = { + ["id"] = "explicit.stat_448592698|72", + ["text"] = "+# to Level of all Elemental Invocation Skills", + ["type"] = "explicit", + }, + [725] = { + ["id"] = "explicit.stat_448592698|196", + ["text"] = "+# to Level of all Elemental Sundering Skills", + ["type"] = "explicit", + }, + [726] = { + ["id"] = "explicit.stat_448592698|216", + ["text"] = "+# to Level of all Elemental Weakness Skills", + ["type"] = "explicit", + }, + [727] = { + ["id"] = "explicit.stat_448592698|149", + ["text"] = "+# to Level of all Ember Fusillade Skills", + ["type"] = "explicit", + }, + [728] = { + ["id"] = "explicit.stat_448592698|43", + ["text"] = "+# to Level of all Emergency Reload Skills", + ["type"] = "explicit", + }, + [729] = { + ["id"] = "explicit.stat_448592698|134", + ["text"] = "+# to Level of all Enfeeble Skills", + ["type"] = "explicit", + }, + [730] = { + ["id"] = "explicit.stat_448592698|230", + ["text"] = "+# to Level of all Entangle Skills", + ["type"] = "explicit", + }, + [731] = { + ["id"] = "explicit.stat_448592698|165", + ["text"] = "+# to Level of all Escape Shot Skills", + ["type"] = "explicit", + }, + [732] = { + ["id"] = "explicit.stat_448592698|139", + ["text"] = "+# to Level of all Essence Drain Skills", + ["type"] = "explicit", + }, + [733] = { + ["id"] = "explicit.stat_448592698|239", + ["text"] = "+# to Level of all Eternal Rage Skills", + ["type"] = "explicit", + }, + [734] = { + ["id"] = "explicit.stat_448592698|168", + ["text"] = "+# to Level of all Explosive Grenade Skills", + ["type"] = "explicit", + }, + [735] = { + ["id"] = "explicit.stat_448592698|92", + ["text"] = "+# to Level of all Explosive Shot Skills", + ["type"] = "explicit", + }, + [736] = { + ["id"] = "explicit.stat_448592698|184", + ["text"] = "+# to Level of all Explosive Spear Skills", + ["type"] = "explicit", + }, + [737] = { + ["id"] = "explicit.stat_448592698|18", + ["text"] = "+# to Level of all Eye of Winter Skills", + ["type"] = "explicit", + }, + [738] = { + ["id"] = "explicit.stat_448592698|155", + ["text"] = "+# to Level of all Falling Thunder Skills", + ["type"] = "explicit", + }, + [739] = { + ["id"] = "explicit.stat_448592698|189", + ["text"] = "+# to Level of all Fangs of Frost Skills", + ["type"] = "explicit", + }, + [740] = { + ["id"] = "explicit.stat_448592698|243", + ["text"] = "+# to Level of all Feral Invocation Skills", + ["type"] = "explicit", + }, + [741] = { + ["id"] = "explicit.stat_448592698|225", + ["text"] = "+# to Level of all Ferocious Roar Skills", + ["type"] = "explicit", + }, + [742] = { + ["id"] = "explicit.stat_448592698|57", + ["text"] = "+# to Level of all Fireball Skills", + ["type"] = "explicit", + }, + [743] = { + ["id"] = "explicit.stat_448592698|29", + ["text"] = "+# to Level of all Firestorm Skills", + ["type"] = "explicit", + }, + [744] = { + ["id"] = "explicit.stat_448592698|229", + ["text"] = "+# to Level of all Flame Breath Skills", + ["type"] = "explicit", + }, + [745] = { + ["id"] = "explicit.stat_448592698|162", + ["text"] = "+# to Level of all Flame Wall Skills", + ["type"] = "explicit", + }, + [746] = { + ["id"] = "explicit.stat_448592698|15", + ["text"] = "+# to Level of all Flameblast Skills", + ["type"] = "explicit", + }, + [747] = { + ["id"] = "explicit.stat_448592698|80", + ["text"] = "+# to Level of all Flammability Skills", + ["type"] = "explicit", + }, + [748] = { + ["id"] = "explicit.stat_448592698|142", + ["text"] = "+# to Level of all Flash Grenade Skills", + ["type"] = "explicit", + }, + [749] = { + ["id"] = "explicit.stat_448592698|13", + ["text"] = "+# to Level of all Flicker Strike Skills", + ["type"] = "explicit", + }, + [750] = { + ["id"] = "explicit.stat_448592698|207", + ["text"] = "+# to Level of all Forge Hammer Skills", + ["type"] = "explicit", + }, + [751] = { + ["id"] = "explicit.stat_448592698|206", + ["text"] = "+# to Level of all Fortifying Cry Skills", + ["type"] = "explicit", + }, + [752] = { + ["id"] = "explicit.stat_448592698|173", + ["text"] = "+# to Level of all Fragmentation Rounds Skills", + ["type"] = "explicit", + }, + [753] = { + ["id"] = "explicit.stat_448592698|95", + ["text"] = "+# to Level of all Freezing Mark Skills", + ["type"] = "explicit", + }, + [754] = { + ["id"] = "explicit.stat_448592698|118", + ["text"] = "+# to Level of all Freezing Salvo Skills", + ["type"] = "explicit", + }, + [755] = { + ["id"] = "explicit.stat_448592698|157", + ["text"] = "+# to Level of all Frost Bomb Skills", + ["type"] = "explicit", + }, + [756] = { + ["id"] = "explicit.stat_448592698|211", + ["text"] = "+# to Level of all Frost Darts Skills", + ["type"] = "explicit", + }, + [757] = { + ["id"] = "explicit.stat_448592698|45", + ["text"] = "+# to Level of all Frost Wall Skills", + ["type"] = "explicit", + }, + [758] = { + ["id"] = "explicit.stat_448592698|140", + ["text"] = "+# to Level of all Frostbolt Skills", + ["type"] = "explicit", + }, + [759] = { + ["id"] = "explicit.stat_448592698|169", + ["text"] = "+# to Level of all Frozen Locus Skills", + ["type"] = "explicit", + }, + [760] = { + ["id"] = "explicit.stat_448592698|224", + ["text"] = "+# to Level of all Furious Slam Skills", + ["type"] = "explicit", + }, + [761] = { + ["id"] = "explicit.stat_448592698|231", + ["text"] = "+# to Level of all Fury of the Mountain Skills", + ["type"] = "explicit", + }, + [762] = { + ["id"] = "explicit.stat_448592698|117", + ["text"] = "+# to Level of all Galvanic Shards Skills", + ["type"] = "explicit", + }, + [763] = { + ["id"] = "explicit.stat_448592698|89", + ["text"] = "+# to Level of all Gas Arrow Skills", + ["type"] = "explicit", + }, + [764] = { + ["id"] = "explicit.stat_448592698|104", + ["text"] = "+# to Level of all Gas Grenade Skills", + ["type"] = "explicit", + }, + [765] = { + ["id"] = "explicit.stat_448592698|28", + ["text"] = "+# to Level of all Gathering Storm Skills", + ["type"] = "explicit", + }, + [766] = { + ["id"] = "explicit.stat_448592698|124", + ["text"] = "+# to Level of all Ghost Dance Skills", + ["type"] = "explicit", + }, + [767] = { + ["id"] = "explicit.stat_448592698|93", + ["text"] = "+# to Level of all Glacial Bolt Skills", + ["type"] = "explicit", + }, + [768] = { + ["id"] = "explicit.stat_448592698|166", + ["text"] = "+# to Level of all Glacial Cascade Skills", + ["type"] = "explicit", + }, + [769] = { + ["id"] = "explicit.stat_448592698|182", + ["text"] = "+# to Level of all Glacial Lance Skills", + ["type"] = "explicit", + }, + [770] = { + ["id"] = "explicit.stat_448592698|129", + ["text"] = "+# to Level of all Grim Feast Skills", + ["type"] = "explicit", + }, + [771] = { + ["id"] = "explicit.stat_448592698|40", + ["text"] = "+# to Level of all Hailstorm Rounds Skills", + ["type"] = "explicit", + }, + [772] = { + ["id"] = "explicit.stat_448592698|23", + ["text"] = "+# to Level of all Hammer of the Gods Skills", + ["type"] = "explicit", + }, + [773] = { + ["id"] = "explicit.stat_448592698|62", + ["text"] = "+# to Level of all Hand of Chayula Skills", + ["type"] = "explicit", + }, + [774] = { + ["id"] = "explicit.stat_448592698|120", + ["text"] = "+# to Level of all Herald of Ash Skills", + ["type"] = "explicit", + }, + [775] = { + ["id"] = "explicit.stat_448592698|199", + ["text"] = "+# to Level of all Herald of Blood Skills", + ["type"] = "explicit", + }, + [776] = { + ["id"] = "explicit.stat_448592698|186", + ["text"] = "+# to Level of all Herald of Blood Skills", + ["type"] = "explicit", + }, + [777] = { + ["id"] = "explicit.stat_448592698|121", + ["text"] = "+# to Level of all Herald of Ice Skills", + ["type"] = "explicit", + }, + [778] = { + ["id"] = "explicit.stat_448592698|75", + ["text"] = "+# to Level of all Herald of Plague Skills", + ["type"] = "explicit", + }, + [779] = { + ["id"] = "explicit.stat_448592698|122", + ["text"] = "+# to Level of all Herald of Thunder Skills", + ["type"] = "explicit", + }, + [780] = { + ["id"] = "explicit.stat_448592698|34", + ["text"] = "+# to Level of all Hexblast Skills", + ["type"] = "explicit", + }, + [781] = { + ["id"] = "explicit.stat_448592698|150", + ["text"] = "+# to Level of all High Velocity Rounds Skills", + ["type"] = "explicit", + }, + [782] = { + ["id"] = "explicit.stat_448592698|81", + ["text"] = "+# to Level of all Hypothermia Skills", + ["type"] = "explicit", + }, + [783] = { + ["id"] = "explicit.stat_448592698|153", + ["text"] = "+# to Level of all Ice Nova Skills", + ["type"] = "explicit", + }, + [784] = { + ["id"] = "explicit.stat_448592698|116", + ["text"] = "+# to Level of all Ice Shards Skills", + ["type"] = "explicit", + }, + [785] = { + ["id"] = "explicit.stat_448592698|61", + ["text"] = "+# to Level of all Ice Shot Skills", + ["type"] = "explicit", + }, + [786] = { + ["id"] = "explicit.stat_448592698|103", + ["text"] = "+# to Level of all Ice Strike Skills", + ["type"] = "explicit", + }, + [787] = { + ["id"] = "explicit.stat_448592698|210", + ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", + ["type"] = "explicit", + }, + [788] = { + ["id"] = "explicit.stat_448592698|151", + ["text"] = "+# to Level of all Incendiary Shot Skills", + ["type"] = "explicit", + }, + [789] = { + ["id"] = "explicit.stat_448592698|99", + ["text"] = "+# to Level of all Incinerate Skills", + ["type"] = "explicit", + }, + [790] = { + ["id"] = "explicit.stat_448592698|137", + ["text"] = "+# to Level of all Infernal Cry Skills", + ["type"] = "explicit", + }, + [791] = { + ["id"] = "explicit.stat_448592698|205", + ["text"] = "+# to Level of all Iron Ward Skills", + ["type"] = "explicit", + }, + [792] = { + ["id"] = "explicit.stat_448592698|167", + ["text"] = "+# to Level of all Killing Palm Skills", + ["type"] = "explicit", + }, + [793] = { + ["id"] = "explicit.stat_448592698|77", + ["text"] = "+# to Level of all Leap Slam Skills", + ["type"] = "explicit", + }, + [794] = { + ["id"] = "explicit.stat_448592698|156", + ["text"] = "+# to Level of all Lightning Arrow Skills", + ["type"] = "explicit", + }, + [795] = { + ["id"] = "explicit.stat_448592698|19", + ["text"] = "+# to Level of all Lightning Conduit Skills", + ["type"] = "explicit", + }, + [796] = { + ["id"] = "explicit.stat_448592698|172", + ["text"] = "+# to Level of all Lightning Rod Skills", + ["type"] = "explicit", + }, + [797] = { + ["id"] = "explicit.stat_448592698|181", + ["text"] = "+# to Level of all Lightning Spear Skills", + ["type"] = "explicit", + }, + [798] = { + ["id"] = "explicit.stat_448592698|47", + ["text"] = "+# to Level of all Lightning Warp Skills", + ["type"] = "explicit", + }, + [799] = { + ["id"] = "explicit.stat_448592698|68", + ["text"] = "+# to Level of all Lingering Illusion Skills", + ["type"] = "explicit", + }, + [800] = { + ["id"] = "explicit.stat_448592698|244", + ["text"] = "+# to Level of all Living Bomb Skills", + ["type"] = "explicit", + }, + [801] = { + ["id"] = "explicit.stat_448592698|233", + ["text"] = "+# to Level of all Lunar Assault Skills", + ["type"] = "explicit", + }, + [802] = { + ["id"] = "explicit.stat_448592698|236", + ["text"] = "+# to Level of all Lunar Blessing Skills", + ["type"] = "explicit", + }, + [803] = { + ["id"] = "explicit.stat_448592698|126", + ["text"] = "+# to Level of all Magma Barrier Skills", + ["type"] = "explicit", + }, + [804] = { + ["id"] = "explicit.stat_448592698|27", + ["text"] = "+# to Level of all Magnetic Salvo Skills", + ["type"] = "explicit", + }, + [805] = { + ["id"] = "explicit.stat_448592698|125", + ["text"] = "+# to Level of all Mana Remnants Skills", + ["type"] = "explicit", + }, + [806] = { + ["id"] = "explicit.stat_448592698|53", + ["text"] = "+# to Level of all Mana Tempest Skills", + ["type"] = "explicit", + }, + [807] = { + ["id"] = "explicit.stat_448592698|60", + ["text"] = "+# to Level of all Mantra of Destruction Skills", + ["type"] = "explicit", + }, + [808] = { + ["id"] = "explicit.stat_448592698|213", + ["text"] = "+# to Level of all Mirage Archer Skills", + ["type"] = "explicit", + }, + [809] = { + ["id"] = "explicit.stat_448592698|114", + ["text"] = "+# to Level of all Molten Blast Skills", + ["type"] = "explicit", + }, + [810] = { + ["id"] = "explicit.stat_448592698|212", + ["text"] = "+# to Level of all Mortar Cannon Skills", + ["type"] = "explicit", + }, + [811] = { + ["id"] = "explicit.stat_448592698|228", + ["text"] = "+# to Level of all Oil Barrage Skills", + ["type"] = "explicit", + }, + [812] = { + ["id"] = "explicit.stat_448592698|54", + ["text"] = "+# to Level of all Oil Grenade Skills", + ["type"] = "explicit", + }, + [813] = { + ["id"] = "explicit.stat_448592698|138", + ["text"] = "+# to Level of all Orb of Storms Skills", + ["type"] = "explicit", + }, + [814] = { + ["id"] = "explicit.stat_448592698|74", + ["text"] = "+# to Level of all Overwhelming Presence Skills", + ["type"] = "explicit", + }, + [815] = { + ["id"] = "explicit.stat_448592698|105", + ["text"] = "+# to Level of all Pain Offering Skills", + ["type"] = "explicit", + }, + [816] = { + ["id"] = "explicit.stat_448592698|112", + ["text"] = "+# to Level of all Perfect Strike Skills", + ["type"] = "explicit", + }, + [817] = { + ["id"] = "explicit.stat_448592698|175", + ["text"] = "+# to Level of all Permafrost Bolts Skills", + ["type"] = "explicit", + }, + [818] = { + ["id"] = "explicit.stat_448592698|123", + ["text"] = "+# to Level of all Plague Bearer Skills", + ["type"] = "explicit", + }, + [819] = { + ["id"] = "explicit.stat_448592698|25", + ["text"] = "+# to Level of all Plasma Blast Skills", + ["type"] = "explicit", + }, + [820] = { + ["id"] = "explicit.stat_448592698|171", + ["text"] = "+# to Level of all Poisonburst Arrow Skills", + ["type"] = "explicit", + }, + [821] = { + ["id"] = "explicit.stat_448592698|221", + ["text"] = "+# to Level of all Pounce Skills", + ["type"] = "explicit", + }, + [822] = { + ["id"] = "explicit.stat_448592698|188", + ["text"] = "+# to Level of all Primal Strikes Skills", + ["type"] = "explicit", + }, + [823] = { + ["id"] = "explicit.stat_448592698|90", + ["text"] = "+# to Level of all Profane Ritual Skills", + ["type"] = "explicit", + }, + [824] = { + ["id"] = "explicit.stat_448592698|127", + ["text"] = "+# to Level of all Raging Spirits Skills", + ["type"] = "explicit", + }, + [825] = { + ["id"] = "explicit.stat_448592698|48", + ["text"] = "+# to Level of all Rain of Arrows Skills", + ["type"] = "explicit", + }, + [826] = { + ["id"] = "explicit.stat_448592698|97", + ["text"] = "+# to Level of all Raise Zombie Skills", + ["type"] = "explicit", + }, + [827] = { + ["id"] = "explicit.stat_448592698|191", + ["text"] = "+# to Level of all Rake Skills", + ["type"] = "explicit", + }, + [828] = { + ["id"] = "explicit.stat_448592698|222", + ["text"] = "+# to Level of all Rampage Skills", + ["type"] = "explicit", + }, + [829] = { + ["id"] = "explicit.stat_448592698|176", + ["text"] = "+# to Level of all Rapid Assault Skills", + ["type"] = "explicit", + }, + [830] = { + ["id"] = "explicit.stat_448592698|115", + ["text"] = "+# to Level of all Rapid Shot Skills", + ["type"] = "explicit", + }, + [831] = { + ["id"] = "explicit.stat_448592698|204", + ["text"] = "+# to Level of all Ravenous Swarm Skills", + ["type"] = "explicit", + }, + [832] = { + ["id"] = "explicit.stat_448592698|9", + ["text"] = "+# to Level of all Reaper's Invocation Skills", + ["type"] = "explicit", + }, + [833] = { + ["id"] = "explicit.stat_448592698|113", + ["text"] = "+# to Level of all Resonating Shield Skills", + ["type"] = "explicit", + }, + [834] = { + ["id"] = "explicit.stat_448592698|217", + ["text"] = "+# to Level of all Rolling Magma Skills", + ["type"] = "explicit", + }, + [835] = { + ["id"] = "explicit.stat_448592698|164", + ["text"] = "+# to Level of all Rolling Slam Skills", + ["type"] = "explicit", + }, + [836] = { + ["id"] = "explicit.stat_448592698|10", + ["text"] = "+# to Level of all Sacrifice Skills", + ["type"] = "explicit", + }, + [837] = { + ["id"] = "explicit.stat_448592698|240", + ["text"] = "+# to Level of all Savage Fury Skills", + ["type"] = "explicit", + }, + [838] = { + ["id"] = "explicit.stat_448592698|130", + ["text"] = "+# to Level of all Scavenged Plating Skills", + ["type"] = "explicit", + }, + [839] = { + ["id"] = "explicit.stat_448592698|33", + ["text"] = "+# to Level of all Seismic Cry Skills", + ["type"] = "explicit", + }, + [840] = { + ["id"] = "explicit.stat_448592698|73", + ["text"] = "+# to Level of all Shard Scavenger Skills", + ["type"] = "explicit", + }, + [841] = { + ["id"] = "explicit.stat_448592698|38", + ["text"] = "+# to Level of all Shattering Palm Skills", + ["type"] = "explicit", + }, + [842] = { + ["id"] = "explicit.stat_448592698|133", + ["text"] = "+# to Level of all Shield Charge Skills", + ["type"] = "explicit", + }, + [843] = { + ["id"] = "explicit.stat_448592698|91", + ["text"] = "+# to Level of all Shield Wall Skills", + ["type"] = "explicit", + }, + [844] = { + ["id"] = "explicit.stat_448592698|41", + ["text"] = "+# to Level of all Shockburst Rounds Skills", + ["type"] = "explicit", + }, + [845] = { + ["id"] = "explicit.stat_448592698|42", + ["text"] = "+# to Level of all Shockchain Arrow Skills", + ["type"] = "explicit", + }, + [846] = { + ["id"] = "explicit.stat_448592698|136", + ["text"] = "+# to Level of all Shockwave Totem Skills", + ["type"] = "explicit", + }, + [847] = { + ["id"] = "explicit.stat_448592698|51", + ["text"] = "+# to Level of all Siege Ballista Skills", + ["type"] = "explicit", + }, + [848] = { + ["id"] = "explicit.stat_448592698|24", + ["text"] = "+# to Level of all Siege Cascade Skills", + ["type"] = "explicit", + }, + [849] = { + ["id"] = "explicit.stat_448592698|214", + ["text"] = "+# to Level of all Siphon Elements Skills", + ["type"] = "explicit", + }, + [850] = { + ["id"] = "explicit.stat_448592698|88", + ["text"] = "+# to Level of all Siphoning Strike Skills", + ["type"] = "explicit", + }, + [851] = { + ["id"] = "explicit.stat_448592698|141", + ["text"] = "+# to Level of all Skeletal Arsonist Skills", + ["type"] = "explicit", + }, + [852] = { + ["id"] = "explicit.stat_448592698|16", + ["text"] = "+# to Level of all Skeletal Brute Skills", + ["type"] = "explicit", + }, + [853] = { + ["id"] = "explicit.stat_448592698|17", + ["text"] = "+# to Level of all Skeletal Cleric Skills", + ["type"] = "explicit", + }, + [854] = { + ["id"] = "explicit.stat_448592698|101", + ["text"] = "+# to Level of all Skeletal Frost Mage Skills", + ["type"] = "explicit", + }, + [855] = { + ["id"] = "explicit.stat_448592698|50", + ["text"] = "+# to Level of all Skeletal Reaver Skills", + ["type"] = "explicit", + }, + [856] = { + ["id"] = "explicit.stat_448592698|160", + ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["type"] = "explicit", + }, + [857] = { + ["id"] = "explicit.stat_448592698|161", + ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["type"] = "explicit", + }, + [858] = { + ["id"] = "explicit.stat_448592698|32", + ["text"] = "+# to Level of all Skeletal Storm Mage Skills", + ["type"] = "explicit", + }, + [859] = { + ["id"] = "explicit.stat_448592698|111", + ["text"] = "+# to Level of all Snap Skills", + ["type"] = "explicit", + }, + [860] = { + ["id"] = "explicit.stat_448592698|147", + ["text"] = "+# to Level of all Snipe Skills", + ["type"] = "explicit", + }, + [861] = { + ["id"] = "explicit.stat_448592698|79", + ["text"] = "+# to Level of all Sniper's Mark Skills", + ["type"] = "explicit", + }, + [862] = { + ["id"] = "explicit.stat_448592698|109", + ["text"] = "+# to Level of all Solar Orb Skills", + ["type"] = "explicit", + }, + [863] = { + ["id"] = "explicit.stat_448592698|22", + ["text"] = "+# to Level of all Soul Offering Skills", + ["type"] = "explicit", + }, + [864] = { + ["id"] = "explicit.stat_448592698|154", + ["text"] = "+# to Level of all Spark Skills", + ["type"] = "explicit", + }, + [865] = { + ["id"] = "explicit.stat_448592698|194", + ["text"] = "+# to Level of all Spear of Solaris Skills", + ["type"] = "explicit", + }, + [866] = { + ["id"] = "explicit.stat_448592698|180", + ["text"] = "+# to Level of all Spearfield Skills", + ["type"] = "explicit", + }, + [867] = { + ["id"] = "explicit.stat_448592698|226", + ["text"] = "+# to Level of all Spell Totem Skills", + ["type"] = "explicit", + }, + [868] = { + ["id"] = "explicit.stat_448592698|20", + ["text"] = "+# to Level of all Spiral Volley Skills", + ["type"] = "explicit", + }, + [869] = { + ["id"] = "explicit.stat_448592698|143", + ["text"] = "+# to Level of all Staggering Palm Skills", + ["type"] = "explicit", + }, + [870] = { + ["id"] = "explicit.stat_448592698|39", + ["text"] = "+# to Level of all Stampede Skills", + ["type"] = "explicit", + }, + [871] = { + ["id"] = "explicit.stat_448592698|195", + ["text"] = "+# to Level of all Storm Lance Skills", + ["type"] = "explicit", + }, + [872] = { + ["id"] = "explicit.stat_448592698|94", + ["text"] = "+# to Level of all Storm Wave Skills", + ["type"] = "explicit", + }, + [873] = { + ["id"] = "explicit.stat_448592698|59", + ["text"] = "+# to Level of all Stormblast Bolts Skills", + ["type"] = "explicit", + }, + [874] = { + ["id"] = "explicit.stat_448592698|146", + ["text"] = "+# to Level of all Stormcaller Arrow Skills", + ["type"] = "explicit", + }, + [875] = { + ["id"] = "explicit.stat_448592698|200", + ["text"] = "+# to Level of all Summon Spectre Skills", + ["type"] = "explicit", + }, + [876] = { + ["id"] = "explicit.stat_448592698|49", + ["text"] = "+# to Level of all Sunder Skills", + ["type"] = "explicit", + }, + [877] = { + ["id"] = "explicit.stat_448592698|36", + ["text"] = "+# to Level of all Supercharged Slam Skills", + ["type"] = "explicit", + }, + [878] = { + ["id"] = "explicit.stat_448592698|193", + ["text"] = "+# to Level of all Tamed Companion Skills", + ["type"] = "explicit", + }, + [879] = { + ["id"] = "explicit.stat_448592698|201", + ["text"] = "+# to Level of all Tamed Companion Skills", + ["type"] = "explicit", + }, + [880] = { + ["id"] = "explicit.stat_448592698|144", + ["text"] = "+# to Level of all Tempest Bell Skills", + ["type"] = "explicit", + }, + [881] = { + ["id"] = "explicit.stat_448592698|106", + ["text"] = "+# to Level of all Tempest Flurry Skills", + ["type"] = "explicit", + }, + [882] = { + ["id"] = "explicit.stat_448592698|14", + ["text"] = "+# to Level of all Temporal Chains Skills", + ["type"] = "explicit", + }, + [883] = { + ["id"] = "explicit.stat_448592698|235", + ["text"] = "+# to Level of all Thrashing Vines Skills", + ["type"] = "explicit", + }, + [884] = { + ["id"] = "explicit.stat_448592698|185", + ["text"] = "+# to Level of all Thunderous Leap Skills", + ["type"] = "explicit", + }, + [885] = { + ["id"] = "explicit.stat_448592698|223", + ["text"] = "+# to Level of all Thunderstorm Skills", + ["type"] = "explicit", + }, + [886] = { + ["id"] = "explicit.stat_448592698|71", + ["text"] = "+# to Level of all Time of Need Skills", + ["type"] = "explicit", + }, + [887] = { + ["id"] = "explicit.stat_448592698|44", + ["text"] = "+# to Level of all Tornado Shot Skills", + ["type"] = "explicit", + }, + [888] = { + ["id"] = "explicit.stat_448592698|218", + ["text"] = "+# to Level of all Tornado Skills", + ["type"] = "explicit", + }, + [889] = { + ["id"] = "explicit.stat_448592698|209", + ["text"] = "+# to Level of all Toxic Domain Skills", + ["type"] = "explicit", + }, + [890] = { + ["id"] = "explicit.stat_448592698|108", + ["text"] = "+# to Level of all Toxic Growth Skills", + ["type"] = "explicit", + }, + [891] = { + ["id"] = "explicit.stat_448592698|198", + ["text"] = "+# to Level of all Trail of Caltrops Skills", + ["type"] = "explicit", + }, + [892] = { + ["id"] = "explicit.stat_448592698|197", + ["text"] = "+# to Level of all Trinity Skills", + ["type"] = "explicit", + }, + [893] = { + ["id"] = "explicit.stat_448592698|183", + ["text"] = "+# to Level of all Twister Skills", + ["type"] = "explicit", + }, + [894] = { + ["id"] = "explicit.stat_448592698|170", + ["text"] = "+# to Level of all Unearth Skills", + ["type"] = "explicit", + }, + [895] = { + ["id"] = "explicit.stat_448592698|152", + ["text"] = "+# to Level of all Vaulting Impact Skills", + ["type"] = "explicit", + }, + [896] = { + ["id"] = "explicit.stat_448592698|148", + ["text"] = "+# to Level of all Vine Arrow Skills", + ["type"] = "explicit", + }, + [897] = { + ["id"] = "explicit.stat_448592698|52", + ["text"] = "+# to Level of all Volcanic Fissure Skills", + ["type"] = "explicit", + }, + [898] = { + ["id"] = "explicit.stat_448592698|219", + ["text"] = "+# to Level of all Volcano Skills", + ["type"] = "explicit", + }, + [899] = { + ["id"] = "explicit.stat_448592698|87", + ["text"] = "+# to Level of all Voltaic Grenade Skills", + ["type"] = "explicit", + }, + [900] = { + ["id"] = "explicit.stat_448592698|96", + ["text"] = "+# to Level of all Voltaic Mark Skills", + ["type"] = "explicit", + }, + [901] = { + ["id"] = "explicit.stat_448592698|83", + ["text"] = "+# to Level of all Vulnerability Skills", + ["type"] = "explicit", + }, + [902] = { + ["id"] = "explicit.stat_448592698|241", + ["text"] = "+# to Level of all Walking Calamity Skills", + ["type"] = "explicit", + }, + [903] = { + ["id"] = "explicit.stat_448592698|131", + ["text"] = "+# to Level of all War Banner Skills", + ["type"] = "explicit", + }, + [904] = { + ["id"] = "explicit.stat_448592698|85", + ["text"] = "+# to Level of all Wave of Frost Skills", + ["type"] = "explicit", + }, + [905] = { + ["id"] = "explicit.stat_448592698|35", + ["text"] = "+# to Level of all Whirling Assault Skills", + ["type"] = "explicit", + }, + [906] = { + ["id"] = "explicit.stat_448592698|179", + ["text"] = "+# to Level of all Whirling Slash Skills", + ["type"] = "explicit", + }, + [907] = { + ["id"] = "explicit.stat_448592698|187", + ["text"] = "+# to Level of all Whirlwind Lance Skills", + ["type"] = "explicit", + }, + [908] = { + ["id"] = "explicit.stat_448592698|102", + ["text"] = "+# to Level of all Wind Blast Skills", + ["type"] = "explicit", + }, + [909] = { + ["id"] = "explicit.stat_448592698|128", + ["text"] = "+# to Level of all Wind Dancer Skills", + ["type"] = "explicit", + }, + [910] = { + ["id"] = "explicit.stat_448592698|190", + ["text"] = "+# to Level of all Wind Serpent's Fury Skills", + ["type"] = "explicit", + }, + [911] = { + ["id"] = "explicit.stat_448592698|227", + ["text"] = "+# to Level of all Wing Blast Skills", + ["type"] = "explicit", + }, + [912] = { + ["id"] = "explicit.stat_448592698|132", + ["text"] = "+# to Level of all Withering Presence Skills", + ["type"] = "explicit", + }, + [913] = { + ["id"] = "explicit.stat_448592698|220", + ["text"] = "+# to Level of all Wolf Pack Skills", + ["type"] = "explicit", + }, + [914] = { + ["id"] = "explicit.stat_4163415912", + ["text"] = "+# to Spirit per Socket filled", + ["type"] = "explicit", + }, + [915] = { + ["id"] = "explicit.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "explicit", + }, + [916] = { + ["id"] = "explicit.stat_2593651571", + ["text"] = "+#% to all Elemental Resistances per Socket filled", + ["type"] = "explicit", + }, + [917] = { + ["id"] = "explicit.stat_1291132817", + ["text"] = "+1 to Armour per Strength", + ["type"] = "explicit", + }, + [918] = { + ["id"] = "explicit.stat_1345486764", + ["text"] = "+1 to Maximum Spirit per # Maximum Life", + ["type"] = "explicit", + }, + [919] = { + ["id"] = "explicit.stat_2134207902", + ["text"] = "+100% of Armour also applies to Lightning Damage", + ["type"] = "explicit", + }, + [920] = { + ["id"] = "explicit.stat_3452816629", + ["text"] = "1% more Unarmed Damage per # Strength", + ["type"] = "explicit", + }, + [921] = { + ["id"] = "explicit.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + [922] = { + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + [923] = { + ["id"] = "explicit.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + [924] = { + ["id"] = "explicit.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["type"] = "explicit", + }, + [925] = { + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", + ["type"] = "explicit", + }, + [926] = { + ["id"] = "explicit.stat_664606484", + ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", + ["type"] = "explicit", + }, + [927] = { + ["id"] = "explicit.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["type"] = "explicit", + }, + [928] = { + ["id"] = "explicit.stat_3979226081", + ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", + ["type"] = "explicit", + }, + [929] = { + ["id"] = "explicit.stat_2991563371", + ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", + ["type"] = "explicit", + }, + [930] = { + ["id"] = "explicit.stat_1726353460", + ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", + ["type"] = "explicit", + }, + [931] = { + ["id"] = "explicit.stat_1679776108", + ["text"] = "Abyssal Wasting you inflict has Infinite Duration", + ["type"] = "explicit", + }, + [932] = { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [933] = { + ["id"] = "explicit.stat_2890355696", + ["text"] = "Abysses have a #% chance to contain 4 additional Pits", + ["type"] = "explicit", + }, + [934] = { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [935] = { + ["id"] = "explicit.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", + ["type"] = "explicit", + }, + [936] = { + ["id"] = "explicit.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [937] = { + ["id"] = "explicit.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", + ["type"] = "explicit", + }, + [938] = { + ["id"] = "explicit.stat_2161347476", + ["text"] = "Accuracy Rating is Doubled", + ["type"] = "explicit", + }, + [939] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + [940] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "explicit", + }, + [941] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + [942] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + [943] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + [944] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + [945] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + [946] = { + ["id"] = "explicit.stat_3111921451", + ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", + ["type"] = "explicit", + }, + [947] = { + ["id"] = "explicit.stat_3835522656", + ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", + ["type"] = "explicit", + }, + [948] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", + }, + [949] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + [950] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + [951] = { + ["id"] = "explicit.stat_874646180", + ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", + ["type"] = "explicit", + }, + [952] = { + ["id"] = "explicit.stat_2312741059", + ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + ["type"] = "explicit", + }, + [953] = { + ["id"] = "explicit.stat_1952324525", + ["text"] = "All Attacks count as Empowered Attacks", + ["type"] = "explicit", + }, + [954] = { + ["id"] = "explicit.stat_4012215578", + ["text"] = "All Damage from Hits Contributes to Poison Magnitude", + ["type"] = "explicit", + }, + [955] = { + ["id"] = "explicit.stat_1717295693", + ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [956] = { + ["id"] = "explicit.stat_1375667591", + ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [957] = { + ["id"] = "explicit.stat_2156230257", + ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [958] = { + ["id"] = "explicit.stat_3761294489", + ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + ["type"] = "explicit", + }, + [959] = { + ["id"] = "explicit.stat_4142786792", + ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", + ["type"] = "explicit", + }, + [960] = { + ["id"] = "explicit.stat_1705072014", + ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + ["type"] = "explicit", + }, + [961] = { + ["id"] = "explicit.stat_2420248029", + ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + ["type"] = "explicit", + }, + [962] = { + ["id"] = "explicit.stat_1291285202", + ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + ["type"] = "explicit", + }, + [963] = { + ["id"] = "explicit.stat_3874491706", + ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", + ["type"] = "explicit", + }, + [964] = { + ["id"] = "explicit.stat_1910743684", + ["text"] = "All damage with this Weapon causes Electrocution buildup", + ["type"] = "explicit", + }, + [965] = { + ["id"] = "explicit.stat_4258251165", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [966] = { + ["id"] = "explicit.stat_2173791158", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [967] = { + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + [968] = { + ["id"] = "explicit.stat_3081479811", + ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", + ["type"] = "explicit", + }, + [969] = { + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "explicit", + }, + [970] = { + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + [971] = { + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + [972] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + [973] = { + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", + }, + [974] = { + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", + }, + [975] = { + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "explicit", + }, + [976] = { + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + [977] = { + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + [978] = { + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [979] = { + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [980] = { + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [981] = { + ["id"] = "explicit.stat_1361645249", + ["text"] = "Allies in your Presence have Block Chance equal to yours", + ["type"] = "explicit", + }, + [982] = { + ["id"] = "explicit.stat_3929993388", + ["text"] = "Allocates # Sinister Jewel sockets", + ["type"] = "explicit", + }, + [983] = { + ["id"] = "explicit.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "explicit", + }, + [984] = { + ["id"] = "explicit.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "explicit", + }, + [985] = { + ["id"] = "explicit.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "explicit", + }, + [986] = { + ["id"] = "explicit.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "explicit", + }, + [987] = { + ["id"] = "explicit.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "explicit", + }, + [988] = { + ["id"] = "explicit.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "explicit", + }, + [989] = { + ["id"] = "explicit.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "explicit", + }, + [990] = { + ["id"] = "explicit.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "explicit", + }, + [991] = { + ["id"] = "explicit.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "explicit", + }, + [992] = { + ["id"] = "explicit.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "explicit", + }, + [993] = { + ["id"] = "explicit.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "explicit", + }, + [994] = { + ["id"] = "explicit.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "explicit", + }, + [995] = { + ["id"] = "explicit.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "explicit", + }, + [996] = { + ["id"] = "explicit.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "explicit", + }, + [997] = { + ["id"] = "explicit.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "explicit", + }, + [998] = { + ["id"] = "explicit.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "explicit", + }, + [999] = { + ["id"] = "explicit.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "explicit", + }, + [1000] = { + ["id"] = "explicit.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "explicit", + }, + [1001] = { + ["id"] = "explicit.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "explicit", + }, + [1002] = { + ["id"] = "explicit.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "explicit", + }, + [1003] = { + ["id"] = "explicit.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "explicit", + }, + [1004] = { + ["id"] = "explicit.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "explicit", + }, + [1005] = { + ["id"] = "explicit.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "explicit", + }, + [1006] = { + ["id"] = "explicit.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "explicit", + }, + [1007] = { + ["id"] = "explicit.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "explicit", + }, + [1008] = { + ["id"] = "explicit.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "explicit", + }, + [1009] = { + ["id"] = "explicit.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "explicit", + }, + [1010] = { + ["id"] = "explicit.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "explicit", + }, + [1011] = { + ["id"] = "explicit.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "explicit", + }, + [1012] = { + ["id"] = "explicit.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "explicit", + }, + [1013] = { + ["id"] = "explicit.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "explicit", + }, + [1014] = { + ["id"] = "explicit.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "explicit", + }, + [1015] = { + ["id"] = "explicit.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "explicit", + }, + [1016] = { + ["id"] = "explicit.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "explicit", + }, + [1017] = { + ["id"] = "explicit.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "explicit", + }, + [1018] = { + ["id"] = "explicit.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "explicit", + }, + [1019] = { + ["id"] = "explicit.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "explicit", + }, + [1020] = { + ["id"] = "explicit.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "explicit", + }, + [1021] = { + ["id"] = "explicit.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "explicit", + }, + [1022] = { + ["id"] = "explicit.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "explicit", + }, + [1023] = { + ["id"] = "explicit.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "explicit", + }, + [1024] = { + ["id"] = "explicit.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "explicit", + }, + [1025] = { + ["id"] = "explicit.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "explicit", + }, + [1026] = { + ["id"] = "explicit.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "explicit", + }, + [1027] = { + ["id"] = "explicit.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "explicit", + }, + [1028] = { + ["id"] = "explicit.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "explicit", + }, + [1029] = { + ["id"] = "explicit.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "explicit", + }, + [1030] = { + ["id"] = "explicit.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "explicit", + }, + [1031] = { + ["id"] = "explicit.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "explicit", + }, + [1032] = { + ["id"] = "explicit.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "explicit", + }, + [1033] = { + ["id"] = "explicit.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "explicit", + }, + [1034] = { + ["id"] = "explicit.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "explicit", + }, + [1035] = { + ["id"] = "explicit.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "explicit", + }, + [1036] = { + ["id"] = "explicit.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "explicit", + }, + [1037] = { + ["id"] = "explicit.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "explicit", + }, + [1038] = { + ["id"] = "explicit.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "explicit", + }, + [1039] = { + ["id"] = "explicit.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "explicit", + }, + [1040] = { + ["id"] = "explicit.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "explicit", + }, + [1041] = { + ["id"] = "explicit.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "explicit", + }, + [1042] = { + ["id"] = "explicit.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "explicit", + }, + [1043] = { + ["id"] = "explicit.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "explicit", + }, + [1044] = { + ["id"] = "explicit.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "explicit", + }, + [1045] = { + ["id"] = "explicit.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "explicit", + }, + [1046] = { + ["id"] = "explicit.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "explicit", + }, + [1047] = { + ["id"] = "explicit.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "explicit", + }, + [1048] = { + ["id"] = "explicit.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "explicit", + }, + [1049] = { + ["id"] = "explicit.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "explicit", + }, + [1050] = { + ["id"] = "explicit.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "explicit", + }, + [1051] = { + ["id"] = "explicit.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "explicit", + }, + [1052] = { + ["id"] = "explicit.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "explicit", + }, + [1053] = { + ["id"] = "explicit.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "explicit", + }, + [1054] = { + ["id"] = "explicit.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", + ["type"] = "explicit", + }, + [1055] = { + ["id"] = "explicit.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "explicit", + }, + [1056] = { + ["id"] = "explicit.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "explicit", + }, + [1057] = { + ["id"] = "explicit.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "explicit", + }, + [1058] = { + ["id"] = "explicit.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "explicit", + }, + [1059] = { + ["id"] = "explicit.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "explicit", + }, + [1060] = { + ["id"] = "explicit.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "explicit", + }, + [1061] = { + ["id"] = "explicit.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "explicit", + }, + [1062] = { + ["id"] = "explicit.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "explicit", + }, + [1063] = { + ["id"] = "explicit.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "explicit", + }, + [1064] = { + ["id"] = "explicit.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "explicit", + }, + [1065] = { + ["id"] = "explicit.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "explicit", + }, + [1066] = { + ["id"] = "explicit.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "explicit", + }, + [1067] = { + ["id"] = "explicit.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "explicit", + }, + [1068] = { + ["id"] = "explicit.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "explicit", + }, + [1069] = { + ["id"] = "explicit.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "explicit", + }, + [1070] = { + ["id"] = "explicit.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "explicit", + }, + [1071] = { + ["id"] = "explicit.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "explicit", + }, + [1072] = { + ["id"] = "explicit.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "explicit", + }, + [1073] = { + ["id"] = "explicit.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "explicit", + }, + [1074] = { + ["id"] = "explicit.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "explicit", + }, + [1075] = { + ["id"] = "explicit.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "explicit", + }, + [1076] = { + ["id"] = "explicit.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "explicit", + }, + [1077] = { + ["id"] = "explicit.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "explicit", + }, + [1078] = { + ["id"] = "explicit.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "explicit", + }, + [1079] = { + ["id"] = "explicit.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "explicit", + }, + [1080] = { + ["id"] = "explicit.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "explicit", + }, + [1081] = { + ["id"] = "explicit.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "explicit", + }, + [1082] = { + ["id"] = "explicit.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "explicit", + }, + [1083] = { + ["id"] = "explicit.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "explicit", + }, + [1084] = { + ["id"] = "explicit.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "explicit", + }, + [1085] = { + ["id"] = "explicit.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "explicit", + }, + [1086] = { + ["id"] = "explicit.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "explicit", + }, + [1087] = { + ["id"] = "explicit.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "explicit", + }, + [1088] = { + ["id"] = "explicit.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "explicit", + }, + [1089] = { + ["id"] = "explicit.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "explicit", + }, + [1090] = { + ["id"] = "explicit.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "explicit", + }, + [1091] = { + ["id"] = "explicit.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "explicit", + }, + [1092] = { + ["id"] = "explicit.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "explicit", + }, + [1093] = { + ["id"] = "explicit.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "explicit", + }, + [1094] = { + ["id"] = "explicit.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "explicit", + }, + [1095] = { + ["id"] = "explicit.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "explicit", + }, + [1096] = { + ["id"] = "explicit.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "explicit", + }, + [1097] = { + ["id"] = "explicit.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "explicit", + }, + [1098] = { + ["id"] = "explicit.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "explicit", + }, + [1099] = { + ["id"] = "explicit.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "explicit", + }, + [1100] = { + ["id"] = "explicit.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "explicit", + }, + [1101] = { + ["id"] = "explicit.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "explicit", + }, + [1102] = { + ["id"] = "explicit.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "explicit", + }, + [1103] = { + ["id"] = "explicit.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "explicit", + }, + [1104] = { + ["id"] = "explicit.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "explicit", + }, + [1105] = { + ["id"] = "explicit.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "explicit", + }, + [1106] = { + ["id"] = "explicit.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "explicit", + }, + [1107] = { + ["id"] = "explicit.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "explicit", + }, + [1108] = { + ["id"] = "explicit.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "explicit", + }, + [1109] = { + ["id"] = "explicit.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "explicit", + }, + [1110] = { + ["id"] = "explicit.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "explicit", + }, + [1111] = { + ["id"] = "explicit.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "explicit", + }, + [1112] = { + ["id"] = "explicit.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "explicit", + }, + [1113] = { + ["id"] = "explicit.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "explicit", + }, + [1114] = { + ["id"] = "explicit.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "explicit", + }, + [1115] = { + ["id"] = "explicit.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "explicit", + }, + [1116] = { + ["id"] = "explicit.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "explicit", + }, + [1117] = { + ["id"] = "explicit.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "explicit", + }, + [1118] = { + ["id"] = "explicit.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "explicit", + }, + [1119] = { + ["id"] = "explicit.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "explicit", + }, + [1120] = { + ["id"] = "explicit.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "explicit", + }, + [1121] = { + ["id"] = "explicit.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "explicit", + }, + [1122] = { + ["id"] = "explicit.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "explicit", + }, + [1123] = { + ["id"] = "explicit.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "explicit", + }, + [1124] = { + ["id"] = "explicit.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "explicit", + }, + [1125] = { + ["id"] = "explicit.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "explicit", + }, + [1126] = { + ["id"] = "explicit.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "explicit", + }, + [1127] = { + ["id"] = "explicit.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "explicit", + }, + [1128] = { + ["id"] = "explicit.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "explicit", + }, + [1129] = { + ["id"] = "explicit.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "explicit", + }, + [1130] = { + ["id"] = "explicit.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "explicit", + }, + [1131] = { + ["id"] = "explicit.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "explicit", + }, + [1132] = { + ["id"] = "explicit.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "explicit", + }, + [1133] = { + ["id"] = "explicit.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "explicit", + }, + [1134] = { + ["id"] = "explicit.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "explicit", + }, + [1135] = { + ["id"] = "explicit.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "explicit", + }, + [1136] = { + ["id"] = "explicit.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "explicit", + }, + [1137] = { + ["id"] = "explicit.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "explicit", + }, + [1138] = { + ["id"] = "explicit.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "explicit", + }, + [1139] = { + ["id"] = "explicit.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "explicit", + }, + [1140] = { + ["id"] = "explicit.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "explicit", + }, + [1141] = { + ["id"] = "explicit.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "explicit", + }, + [1142] = { + ["id"] = "explicit.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "explicit", + }, + [1143] = { + ["id"] = "explicit.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", + ["type"] = "explicit", + }, + [1144] = { + ["id"] = "explicit.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "explicit", + }, + [1145] = { + ["id"] = "explicit.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "explicit", + }, + [1146] = { + ["id"] = "explicit.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "explicit", + }, + [1147] = { + ["id"] = "explicit.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "explicit", + }, + [1148] = { + ["id"] = "explicit.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "explicit", + }, + [1149] = { + ["id"] = "explicit.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "explicit", + }, + [1150] = { + ["id"] = "explicit.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "explicit", + }, + [1151] = { + ["id"] = "explicit.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "explicit", + }, + [1152] = { + ["id"] = "explicit.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "explicit", + }, + [1153] = { + ["id"] = "explicit.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "explicit", + }, + [1154] = { + ["id"] = "explicit.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "explicit", + }, + [1155] = { + ["id"] = "explicit.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "explicit", + }, + [1156] = { + ["id"] = "explicit.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "explicit", + }, + [1157] = { + ["id"] = "explicit.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "explicit", + }, + [1158] = { + ["id"] = "explicit.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "explicit", + }, + [1159] = { + ["id"] = "explicit.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "explicit", + }, + [1160] = { + ["id"] = "explicit.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "explicit", + }, + [1161] = { + ["id"] = "explicit.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "explicit", + }, + [1162] = { + ["id"] = "explicit.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "explicit", + }, + [1163] = { + ["id"] = "explicit.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "explicit", + }, + [1164] = { + ["id"] = "explicit.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "explicit", + }, + [1165] = { + ["id"] = "explicit.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "explicit", + }, + [1166] = { + ["id"] = "explicit.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "explicit", + }, + [1167] = { + ["id"] = "explicit.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "explicit", + }, + [1168] = { + ["id"] = "explicit.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "explicit", + }, + [1169] = { + ["id"] = "explicit.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "explicit", + }, + [1170] = { + ["id"] = "explicit.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "explicit", + }, + [1171] = { + ["id"] = "explicit.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "explicit", + }, + [1172] = { + ["id"] = "explicit.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "explicit", + }, + [1173] = { + ["id"] = "explicit.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "explicit", + }, + [1174] = { + ["id"] = "explicit.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "explicit", + }, + [1175] = { + ["id"] = "explicit.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "explicit", + }, + [1176] = { + ["id"] = "explicit.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "explicit", + }, + [1177] = { + ["id"] = "explicit.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "explicit", + }, + [1178] = { + ["id"] = "explicit.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "explicit", + }, + [1179] = { + ["id"] = "explicit.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "explicit", + }, + [1180] = { + ["id"] = "explicit.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "explicit", + }, + [1181] = { + ["id"] = "explicit.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "explicit", + }, + [1182] = { + ["id"] = "explicit.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "explicit", + }, + [1183] = { + ["id"] = "explicit.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "explicit", + }, + [1184] = { + ["id"] = "explicit.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "explicit", + }, + [1185] = { + ["id"] = "explicit.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "explicit", + }, + [1186] = { + ["id"] = "explicit.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "explicit", + }, + [1187] = { + ["id"] = "explicit.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "explicit", + }, + [1188] = { + ["id"] = "explicit.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "explicit", + }, + [1189] = { + ["id"] = "explicit.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "explicit", + }, + [1190] = { + ["id"] = "explicit.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "explicit", + }, + [1191] = { + ["id"] = "explicit.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "explicit", + }, + [1192] = { + ["id"] = "explicit.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "explicit", + }, + [1193] = { + ["id"] = "explicit.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "explicit", + }, + [1194] = { + ["id"] = "explicit.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "explicit", + }, + [1195] = { + ["id"] = "explicit.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "explicit", + }, + [1196] = { + ["id"] = "explicit.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "explicit", + }, + [1197] = { + ["id"] = "explicit.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "explicit", + }, + [1198] = { + ["id"] = "explicit.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "explicit", + }, + [1199] = { + ["id"] = "explicit.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "explicit", + }, + [1200] = { + ["id"] = "explicit.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "explicit", + }, + [1201] = { + ["id"] = "explicit.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "explicit", + }, + [1202] = { + ["id"] = "explicit.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "explicit", + }, + [1203] = { + ["id"] = "explicit.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "explicit", + }, + [1204] = { + ["id"] = "explicit.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "explicit", + }, + [1205] = { + ["id"] = "explicit.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "explicit", + }, + [1206] = { + ["id"] = "explicit.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "explicit", + }, + [1207] = { + ["id"] = "explicit.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "explicit", + }, + [1208] = { + ["id"] = "explicit.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "explicit", + }, + [1209] = { + ["id"] = "explicit.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "explicit", + }, + [1210] = { + ["id"] = "explicit.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "explicit", + }, + [1211] = { + ["id"] = "explicit.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "explicit", + }, + [1212] = { + ["id"] = "explicit.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "explicit", + }, + [1213] = { + ["id"] = "explicit.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "explicit", + }, + [1214] = { + ["id"] = "explicit.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "explicit", + }, + [1215] = { + ["id"] = "explicit.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "explicit", + }, + [1216] = { + ["id"] = "explicit.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "explicit", + }, + [1217] = { + ["id"] = "explicit.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "explicit", + }, + [1218] = { + ["id"] = "explicit.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "explicit", + }, + [1219] = { + ["id"] = "explicit.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "explicit", + }, + [1220] = { + ["id"] = "explicit.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "explicit", + }, + [1221] = { + ["id"] = "explicit.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "explicit", + }, + [1222] = { + ["id"] = "explicit.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "explicit", + }, + [1223] = { + ["id"] = "explicit.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "explicit", + }, + [1224] = { + ["id"] = "explicit.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "explicit", + }, + [1225] = { + ["id"] = "explicit.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "explicit", + }, + [1226] = { + ["id"] = "explicit.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "explicit", + }, + [1227] = { + ["id"] = "explicit.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "explicit", + }, + [1228] = { + ["id"] = "explicit.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "explicit", + }, + [1229] = { + ["id"] = "explicit.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "explicit", + }, + [1230] = { + ["id"] = "explicit.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "explicit", + }, + [1231] = { + ["id"] = "explicit.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "explicit", + }, + [1232] = { + ["id"] = "explicit.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "explicit", + }, + [1233] = { + ["id"] = "explicit.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "explicit", + }, + [1234] = { + ["id"] = "explicit.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "explicit", + }, + [1235] = { + ["id"] = "explicit.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "explicit", + }, + [1236] = { + ["id"] = "explicit.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "explicit", + }, + [1237] = { + ["id"] = "explicit.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "explicit", + }, + [1238] = { + ["id"] = "explicit.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "explicit", + }, + [1239] = { + ["id"] = "explicit.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "explicit", + }, + [1240] = { + ["id"] = "explicit.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "explicit", + }, + [1241] = { + ["id"] = "explicit.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "explicit", + }, + [1242] = { + ["id"] = "explicit.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "explicit", + }, + [1243] = { + ["id"] = "explicit.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "explicit", + }, + [1244] = { + ["id"] = "explicit.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "explicit", + }, + [1245] = { + ["id"] = "explicit.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "explicit", + }, + [1246] = { + ["id"] = "explicit.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "explicit", + }, + [1247] = { + ["id"] = "explicit.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "explicit", + }, + [1248] = { + ["id"] = "explicit.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "explicit", + }, + [1249] = { + ["id"] = "explicit.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "explicit", + }, + [1250] = { + ["id"] = "explicit.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "explicit", + }, + [1251] = { + ["id"] = "explicit.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "explicit", + }, + [1252] = { + ["id"] = "explicit.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "explicit", + }, + [1253] = { + ["id"] = "explicit.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "explicit", + }, + [1254] = { + ["id"] = "explicit.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "explicit", + }, + [1255] = { + ["id"] = "explicit.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "explicit", + }, + [1256] = { + ["id"] = "explicit.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "explicit", + }, + [1257] = { + ["id"] = "explicit.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "explicit", + }, + [1258] = { + ["id"] = "explicit.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "explicit", + }, + [1259] = { + ["id"] = "explicit.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "explicit", + }, + [1260] = { + ["id"] = "explicit.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "explicit", + }, + [1261] = { + ["id"] = "explicit.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "explicit", + }, + [1262] = { + ["id"] = "explicit.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "explicit", + }, + [1263] = { + ["id"] = "explicit.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "explicit", + }, + [1264] = { + ["id"] = "explicit.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "explicit", + }, + [1265] = { + ["id"] = "explicit.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "explicit", + }, + [1266] = { + ["id"] = "explicit.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "explicit", + }, + [1267] = { + ["id"] = "explicit.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "explicit", + }, + [1268] = { + ["id"] = "explicit.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "explicit", + }, + [1269] = { + ["id"] = "explicit.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "explicit", + }, + [1270] = { + ["id"] = "explicit.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "explicit", + }, + [1271] = { + ["id"] = "explicit.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "explicit", + }, + [1272] = { + ["id"] = "explicit.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "explicit", + }, + [1273] = { + ["id"] = "explicit.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "explicit", + }, + [1274] = { + ["id"] = "explicit.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "explicit", + }, + [1275] = { + ["id"] = "explicit.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "explicit", + }, + [1276] = { + ["id"] = "explicit.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "explicit", + }, + [1277] = { + ["id"] = "explicit.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "explicit", + }, + [1278] = { + ["id"] = "explicit.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "explicit", + }, + [1279] = { + ["id"] = "explicit.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "explicit", + }, + [1280] = { + ["id"] = "explicit.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "explicit", + }, + [1281] = { + ["id"] = "explicit.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "explicit", + }, + [1282] = { + ["id"] = "explicit.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "explicit", + }, + [1283] = { + ["id"] = "explicit.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "explicit", + }, + [1284] = { + ["id"] = "explicit.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "explicit", + }, + [1285] = { + ["id"] = "explicit.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "explicit", + }, + [1286] = { + ["id"] = "explicit.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "explicit", + }, + [1287] = { + ["id"] = "explicit.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "explicit", + }, + [1288] = { + ["id"] = "explicit.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "explicit", + }, + [1289] = { + ["id"] = "explicit.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "explicit", + }, + [1290] = { + ["id"] = "explicit.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "explicit", + }, + [1291] = { + ["id"] = "explicit.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "explicit", + }, + [1292] = { + ["id"] = "explicit.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "explicit", + }, + [1293] = { + ["id"] = "explicit.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "explicit", + }, + [1294] = { + ["id"] = "explicit.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "explicit", + }, + [1295] = { + ["id"] = "explicit.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "explicit", + }, + [1296] = { + ["id"] = "explicit.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "explicit", + }, + [1297] = { + ["id"] = "explicit.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "explicit", + }, + [1298] = { + ["id"] = "explicit.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "explicit", + }, + [1299] = { + ["id"] = "explicit.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "explicit", + }, + [1300] = { + ["id"] = "explicit.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "explicit", + }, + [1301] = { + ["id"] = "explicit.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "explicit", + }, + [1302] = { + ["id"] = "explicit.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "explicit", + }, + [1303] = { + ["id"] = "explicit.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "explicit", + }, + [1304] = { + ["id"] = "explicit.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "explicit", + }, + [1305] = { + ["id"] = "explicit.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "explicit", + }, + [1306] = { + ["id"] = "explicit.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "explicit", + }, + [1307] = { + ["id"] = "explicit.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "explicit", + }, + [1308] = { + ["id"] = "explicit.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "explicit", + }, + [1309] = { + ["id"] = "explicit.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "explicit", + }, + [1310] = { + ["id"] = "explicit.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "explicit", + }, + [1311] = { + ["id"] = "explicit.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "explicit", + }, + [1312] = { + ["id"] = "explicit.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "explicit", + }, + [1313] = { + ["id"] = "explicit.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "explicit", + }, + [1314] = { + ["id"] = "explicit.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "explicit", + }, + [1315] = { + ["id"] = "explicit.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "explicit", + }, + [1316] = { + ["id"] = "explicit.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "explicit", + }, + [1317] = { + ["id"] = "explicit.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "explicit", + }, + [1318] = { + ["id"] = "explicit.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "explicit", + }, + [1319] = { + ["id"] = "explicit.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "explicit", + }, + [1320] = { + ["id"] = "explicit.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "explicit", + }, + [1321] = { + ["id"] = "explicit.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "explicit", + }, + [1322] = { + ["id"] = "explicit.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "explicit", + }, + [1323] = { + ["id"] = "explicit.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "explicit", + }, + [1324] = { + ["id"] = "explicit.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "explicit", + }, + [1325] = { + ["id"] = "explicit.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "explicit", + }, + [1326] = { + ["id"] = "explicit.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "explicit", + }, + [1327] = { + ["id"] = "explicit.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "explicit", + }, + [1328] = { + ["id"] = "explicit.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "explicit", + }, + [1329] = { + ["id"] = "explicit.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "explicit", + }, + [1330] = { + ["id"] = "explicit.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "explicit", + }, + [1331] = { + ["id"] = "explicit.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "explicit", + }, + [1332] = { + ["id"] = "explicit.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "explicit", + }, + [1333] = { + ["id"] = "explicit.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "explicit", + }, + [1334] = { + ["id"] = "explicit.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "explicit", + }, + [1335] = { + ["id"] = "explicit.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "explicit", + }, + [1336] = { + ["id"] = "explicit.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "explicit", + }, + [1337] = { + ["id"] = "explicit.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "explicit", + }, + [1338] = { + ["id"] = "explicit.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "explicit", + }, + [1339] = { + ["id"] = "explicit.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "explicit", + }, + [1340] = { + ["id"] = "explicit.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "explicit", + }, + [1341] = { + ["id"] = "explicit.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "explicit", + }, + [1342] = { + ["id"] = "explicit.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "explicit", + }, + [1343] = { + ["id"] = "explicit.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "explicit", + }, + [1344] = { + ["id"] = "explicit.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "explicit", + }, + [1345] = { + ["id"] = "explicit.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "explicit", + }, + [1346] = { + ["id"] = "explicit.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "explicit", + }, + [1347] = { + ["id"] = "explicit.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "explicit", + }, + [1348] = { + ["id"] = "explicit.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "explicit", + }, + [1349] = { + ["id"] = "explicit.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "explicit", + }, + [1350] = { + ["id"] = "explicit.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "explicit", + }, + [1351] = { + ["id"] = "explicit.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "explicit", + }, + [1352] = { + ["id"] = "explicit.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "explicit", + }, + [1353] = { + ["id"] = "explicit.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "explicit", + }, + [1354] = { + ["id"] = "explicit.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "explicit", + }, + [1355] = { + ["id"] = "explicit.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "explicit", + }, + [1356] = { + ["id"] = "explicit.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "explicit", + }, + [1357] = { + ["id"] = "explicit.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "explicit", + }, + [1358] = { + ["id"] = "explicit.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "explicit", + }, + [1359] = { + ["id"] = "explicit.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "explicit", + }, + [1360] = { + ["id"] = "explicit.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "explicit", + }, + [1361] = { + ["id"] = "explicit.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "explicit", + }, + [1362] = { + ["id"] = "explicit.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "explicit", + }, + [1363] = { + ["id"] = "explicit.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "explicit", + }, + [1364] = { + ["id"] = "explicit.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "explicit", + }, + [1365] = { + ["id"] = "explicit.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "explicit", + }, + [1366] = { + ["id"] = "explicit.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "explicit", + }, + [1367] = { + ["id"] = "explicit.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "explicit", + }, + [1368] = { + ["id"] = "explicit.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "explicit", + }, + [1369] = { + ["id"] = "explicit.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "explicit", + }, + [1370] = { + ["id"] = "explicit.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "explicit", + }, + [1371] = { + ["id"] = "explicit.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "explicit", + }, + [1372] = { + ["id"] = "explicit.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "explicit", + }, + [1373] = { + ["id"] = "explicit.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "explicit", + }, + [1374] = { + ["id"] = "explicit.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "explicit", + }, + [1375] = { + ["id"] = "explicit.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "explicit", + }, + [1376] = { + ["id"] = "explicit.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "explicit", + }, + [1377] = { + ["id"] = "explicit.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "explicit", + }, + [1378] = { + ["id"] = "explicit.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "explicit", + }, + [1379] = { + ["id"] = "explicit.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "explicit", + }, + [1380] = { + ["id"] = "explicit.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "explicit", + }, + [1381] = { + ["id"] = "explicit.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "explicit", + }, + [1382] = { + ["id"] = "explicit.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "explicit", + }, + [1383] = { + ["id"] = "explicit.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "explicit", + }, + [1384] = { + ["id"] = "explicit.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "explicit", + }, + [1385] = { + ["id"] = "explicit.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "explicit", + }, + [1386] = { + ["id"] = "explicit.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "explicit", + }, + [1387] = { + ["id"] = "explicit.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "explicit", + }, + [1388] = { + ["id"] = "explicit.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "explicit", + }, + [1389] = { + ["id"] = "explicit.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "explicit", + }, + [1390] = { + ["id"] = "explicit.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "explicit", + }, + [1391] = { + ["id"] = "explicit.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "explicit", + }, + [1392] = { + ["id"] = "explicit.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "explicit", + }, + [1393] = { + ["id"] = "explicit.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "explicit", + }, + [1394] = { + ["id"] = "explicit.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "explicit", + }, + [1395] = { + ["id"] = "explicit.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "explicit", + }, + [1396] = { + ["id"] = "explicit.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "explicit", + }, + [1397] = { + ["id"] = "explicit.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "explicit", + }, + [1398] = { + ["id"] = "explicit.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "explicit", + }, + [1399] = { + ["id"] = "explicit.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "explicit", + }, + [1400] = { + ["id"] = "explicit.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "explicit", + }, + [1401] = { + ["id"] = "explicit.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "explicit", + }, + [1402] = { + ["id"] = "explicit.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "explicit", + }, + [1403] = { + ["id"] = "explicit.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "explicit", + }, + [1404] = { + ["id"] = "explicit.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "explicit", + }, + [1405] = { + ["id"] = "explicit.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "explicit", + }, + [1406] = { + ["id"] = "explicit.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "explicit", + }, + [1407] = { + ["id"] = "explicit.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "explicit", + }, + [1408] = { + ["id"] = "explicit.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "explicit", + }, + [1409] = { + ["id"] = "explicit.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "explicit", + }, + [1410] = { + ["id"] = "explicit.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "explicit", + }, + [1411] = { + ["id"] = "explicit.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "explicit", + }, + [1412] = { + ["id"] = "explicit.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "explicit", + }, + [1413] = { + ["id"] = "explicit.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "explicit", + }, + [1414] = { + ["id"] = "explicit.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "explicit", + }, + [1415] = { + ["id"] = "explicit.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "explicit", + }, + [1416] = { + ["id"] = "explicit.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "explicit", + }, + [1417] = { + ["id"] = "explicit.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "explicit", + }, + [1418] = { + ["id"] = "explicit.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "explicit", + }, + [1419] = { + ["id"] = "explicit.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "explicit", + }, + [1420] = { + ["id"] = "explicit.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "explicit", + }, + [1421] = { + ["id"] = "explicit.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "explicit", + }, + [1422] = { + ["id"] = "explicit.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "explicit", + }, + [1423] = { + ["id"] = "explicit.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "explicit", + }, + [1424] = { + ["id"] = "explicit.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "explicit", + }, + [1425] = { + ["id"] = "explicit.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "explicit", + }, + [1426] = { + ["id"] = "explicit.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "explicit", + }, + [1427] = { + ["id"] = "explicit.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "explicit", + }, + [1428] = { + ["id"] = "explicit.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "explicit", + }, + [1429] = { + ["id"] = "explicit.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "explicit", + }, + [1430] = { + ["id"] = "explicit.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "explicit", + }, + [1431] = { + ["id"] = "explicit.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "explicit", + }, + [1432] = { + ["id"] = "explicit.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "explicit", + }, + [1433] = { + ["id"] = "explicit.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "explicit", + }, + [1434] = { + ["id"] = "explicit.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "explicit", + }, + [1435] = { + ["id"] = "explicit.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "explicit", + }, + [1436] = { + ["id"] = "explicit.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "explicit", + }, + [1437] = { + ["id"] = "explicit.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "explicit", + }, + [1438] = { + ["id"] = "explicit.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "explicit", + }, + [1439] = { + ["id"] = "explicit.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "explicit", + }, + [1440] = { + ["id"] = "explicit.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "explicit", + }, + [1441] = { + ["id"] = "explicit.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "explicit", + }, + [1442] = { + ["id"] = "explicit.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "explicit", + }, + [1443] = { + ["id"] = "explicit.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "explicit", + }, + [1444] = { + ["id"] = "explicit.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "explicit", + }, + [1445] = { + ["id"] = "explicit.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "explicit", + }, + [1446] = { + ["id"] = "explicit.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "explicit", + }, + [1447] = { + ["id"] = "explicit.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "explicit", + }, + [1448] = { + ["id"] = "explicit.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "explicit", + }, + [1449] = { + ["id"] = "explicit.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "explicit", + }, + [1450] = { + ["id"] = "explicit.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "explicit", + }, + [1451] = { + ["id"] = "explicit.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "explicit", + }, + [1452] = { + ["id"] = "explicit.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "explicit", + }, + [1453] = { + ["id"] = "explicit.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "explicit", + }, + [1454] = { + ["id"] = "explicit.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "explicit", + }, + [1455] = { + ["id"] = "explicit.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "explicit", + }, + [1456] = { + ["id"] = "explicit.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "explicit", + }, + [1457] = { + ["id"] = "explicit.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "explicit", + }, + [1458] = { + ["id"] = "explicit.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "explicit", + }, + [1459] = { + ["id"] = "explicit.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "explicit", + }, + [1460] = { + ["id"] = "explicit.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "explicit", + }, + [1461] = { + ["id"] = "explicit.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "explicit", + }, + [1462] = { + ["id"] = "explicit.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "explicit", + }, + [1463] = { + ["id"] = "explicit.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "explicit", + }, + [1464] = { + ["id"] = "explicit.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "explicit", + }, + [1465] = { + ["id"] = "explicit.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "explicit", + }, + [1466] = { + ["id"] = "explicit.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "explicit", + }, + [1467] = { + ["id"] = "explicit.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "explicit", + }, + [1468] = { + ["id"] = "explicit.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "explicit", + }, + [1469] = { + ["id"] = "explicit.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "explicit", + }, + [1470] = { + ["id"] = "explicit.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "explicit", + }, + [1471] = { + ["id"] = "explicit.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "explicit", + }, + [1472] = { + ["id"] = "explicit.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "explicit", + }, + [1473] = { + ["id"] = "explicit.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "explicit", + }, + [1474] = { + ["id"] = "explicit.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "explicit", + }, + [1475] = { + ["id"] = "explicit.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "explicit", + }, + [1476] = { + ["id"] = "explicit.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "explicit", + }, + [1477] = { + ["id"] = "explicit.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", + ["type"] = "explicit", + }, + [1478] = { + ["id"] = "explicit.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "explicit", + }, + [1479] = { + ["id"] = "explicit.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "explicit", + }, + [1480] = { + ["id"] = "explicit.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "explicit", + }, + [1481] = { + ["id"] = "explicit.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "explicit", + }, + [1482] = { + ["id"] = "explicit.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "explicit", + }, + [1483] = { + ["id"] = "explicit.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "explicit", + }, + [1484] = { + ["id"] = "explicit.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "explicit", + }, + [1485] = { + ["id"] = "explicit.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "explicit", + }, + [1486] = { + ["id"] = "explicit.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "explicit", + }, + [1487] = { + ["id"] = "explicit.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "explicit", + }, + [1488] = { + ["id"] = "explicit.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "explicit", + }, + [1489] = { + ["id"] = "explicit.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "explicit", + }, + [1490] = { + ["id"] = "explicit.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "explicit", + }, + [1491] = { + ["id"] = "explicit.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "explicit", + }, + [1492] = { + ["id"] = "explicit.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "explicit", + }, + [1493] = { + ["id"] = "explicit.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "explicit", + }, + [1494] = { + ["id"] = "explicit.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "explicit", + }, + [1495] = { + ["id"] = "explicit.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "explicit", + }, + [1496] = { + ["id"] = "explicit.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "explicit", + }, + [1497] = { + ["id"] = "explicit.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "explicit", + }, + [1498] = { + ["id"] = "explicit.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "explicit", + }, + [1499] = { + ["id"] = "explicit.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "explicit", + }, + [1500] = { + ["id"] = "explicit.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "explicit", + }, + [1501] = { + ["id"] = "explicit.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "explicit", + }, + [1502] = { + ["id"] = "explicit.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "explicit", + }, + [1503] = { + ["id"] = "explicit.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "explicit", + }, + [1504] = { + ["id"] = "explicit.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "explicit", + }, + [1505] = { + ["id"] = "explicit.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "explicit", + }, + [1506] = { + ["id"] = "explicit.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "explicit", + }, + [1507] = { + ["id"] = "explicit.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "explicit", + }, + [1508] = { + ["id"] = "explicit.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "explicit", + }, + [1509] = { + ["id"] = "explicit.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "explicit", + }, + [1510] = { + ["id"] = "explicit.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "explicit", + }, + [1511] = { + ["id"] = "explicit.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "explicit", + }, + [1512] = { + ["id"] = "explicit.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "explicit", + }, + [1513] = { + ["id"] = "explicit.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "explicit", + }, + [1514] = { + ["id"] = "explicit.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "explicit", + }, + [1515] = { + ["id"] = "explicit.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "explicit", + }, + [1516] = { + ["id"] = "explicit.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "explicit", + }, + [1517] = { + ["id"] = "explicit.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "explicit", + }, + [1518] = { + ["id"] = "explicit.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "explicit", + }, + [1519] = { + ["id"] = "explicit.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "explicit", + }, + [1520] = { + ["id"] = "explicit.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "explicit", + }, + [1521] = { + ["id"] = "explicit.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "explicit", + }, + [1522] = { + ["id"] = "explicit.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "explicit", + }, + [1523] = { + ["id"] = "explicit.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "explicit", + }, + [1524] = { + ["id"] = "explicit.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "explicit", + }, + [1525] = { + ["id"] = "explicit.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "explicit", + }, + [1526] = { + ["id"] = "explicit.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "explicit", + }, + [1527] = { + ["id"] = "explicit.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "explicit", + }, + [1528] = { + ["id"] = "explicit.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "explicit", + }, + [1529] = { + ["id"] = "explicit.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "explicit", + }, + [1530] = { + ["id"] = "explicit.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "explicit", + }, + [1531] = { + ["id"] = "explicit.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "explicit", + }, + [1532] = { + ["id"] = "explicit.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "explicit", + }, + [1533] = { + ["id"] = "explicit.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "explicit", + }, + [1534] = { + ["id"] = "explicit.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "explicit", + }, + [1535] = { + ["id"] = "explicit.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "explicit", + }, + [1536] = { + ["id"] = "explicit.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "explicit", + }, + [1537] = { + ["id"] = "explicit.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "explicit", + }, + [1538] = { + ["id"] = "explicit.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "explicit", + }, + [1539] = { + ["id"] = "explicit.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "explicit", + }, + [1540] = { + ["id"] = "explicit.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "explicit", + }, + [1541] = { + ["id"] = "explicit.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "explicit", + }, + [1542] = { + ["id"] = "explicit.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "explicit", + }, + [1543] = { + ["id"] = "explicit.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "explicit", + }, + [1544] = { + ["id"] = "explicit.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "explicit", + }, + [1545] = { + ["id"] = "explicit.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "explicit", + }, + [1546] = { + ["id"] = "explicit.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "explicit", + }, + [1547] = { + ["id"] = "explicit.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "explicit", + }, + [1548] = { + ["id"] = "explicit.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "explicit", + }, + [1549] = { + ["id"] = "explicit.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "explicit", + }, + [1550] = { + ["id"] = "explicit.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "explicit", + }, + [1551] = { + ["id"] = "explicit.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "explicit", + }, + [1552] = { + ["id"] = "explicit.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "explicit", + }, + [1553] = { + ["id"] = "explicit.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "explicit", + }, + [1554] = { + ["id"] = "explicit.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "explicit", + }, + [1555] = { + ["id"] = "explicit.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "explicit", + }, + [1556] = { + ["id"] = "explicit.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "explicit", + }, + [1557] = { + ["id"] = "explicit.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "explicit", + }, + [1558] = { + ["id"] = "explicit.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "explicit", + }, + [1559] = { + ["id"] = "explicit.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "explicit", + }, + [1560] = { + ["id"] = "explicit.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "explicit", + }, + [1561] = { + ["id"] = "explicit.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "explicit", + }, + [1562] = { + ["id"] = "explicit.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "explicit", + }, + [1563] = { + ["id"] = "explicit.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "explicit", + }, + [1564] = { + ["id"] = "explicit.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "explicit", + }, + [1565] = { + ["id"] = "explicit.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "explicit", + }, + [1566] = { + ["id"] = "explicit.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "explicit", + }, + [1567] = { + ["id"] = "explicit.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "explicit", + }, + [1568] = { + ["id"] = "explicit.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "explicit", + }, + [1569] = { + ["id"] = "explicit.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "explicit", + }, + [1570] = { + ["id"] = "explicit.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "explicit", + }, + [1571] = { + ["id"] = "explicit.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "explicit", + }, + [1572] = { + ["id"] = "explicit.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "explicit", + }, + [1573] = { + ["id"] = "explicit.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "explicit", + }, + [1574] = { + ["id"] = "explicit.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "explicit", + }, + [1575] = { + ["id"] = "explicit.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "explicit", + }, + [1576] = { + ["id"] = "explicit.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "explicit", + }, + [1577] = { + ["id"] = "explicit.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "explicit", + }, + [1578] = { + ["id"] = "explicit.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "explicit", + }, + [1579] = { + ["id"] = "explicit.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "explicit", + }, + [1580] = { + ["id"] = "explicit.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "explicit", + }, + [1581] = { + ["id"] = "explicit.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "explicit", + }, + [1582] = { + ["id"] = "explicit.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "explicit", + }, + [1583] = { + ["id"] = "explicit.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "explicit", + }, + [1584] = { + ["id"] = "explicit.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "explicit", + }, + [1585] = { + ["id"] = "explicit.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "explicit", + }, + [1586] = { + ["id"] = "explicit.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "explicit", + }, + [1587] = { + ["id"] = "explicit.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "explicit", + }, + [1588] = { + ["id"] = "explicit.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "explicit", + }, + [1589] = { + ["id"] = "explicit.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "explicit", + }, + [1590] = { + ["id"] = "explicit.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "explicit", + }, + [1591] = { + ["id"] = "explicit.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "explicit", + }, + [1592] = { + ["id"] = "explicit.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "explicit", + }, + [1593] = { + ["id"] = "explicit.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "explicit", + }, + [1594] = { + ["id"] = "explicit.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "explicit", + }, + [1595] = { + ["id"] = "explicit.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "explicit", + }, + [1596] = { + ["id"] = "explicit.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "explicit", + }, + [1597] = { + ["id"] = "explicit.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "explicit", + }, + [1598] = { + ["id"] = "explicit.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "explicit", + }, + [1599] = { + ["id"] = "explicit.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "explicit", + }, + [1600] = { + ["id"] = "explicit.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "explicit", + }, + [1601] = { + ["id"] = "explicit.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "explicit", + }, + [1602] = { + ["id"] = "explicit.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "explicit", + }, + [1603] = { + ["id"] = "explicit.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "explicit", + }, + [1604] = { + ["id"] = "explicit.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "explicit", + }, + [1605] = { + ["id"] = "explicit.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "explicit", + }, + [1606] = { + ["id"] = "explicit.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "explicit", + }, + [1607] = { + ["id"] = "explicit.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "explicit", + }, + [1608] = { + ["id"] = "explicit.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "explicit", + }, + [1609] = { + ["id"] = "explicit.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "explicit", + }, + [1610] = { + ["id"] = "explicit.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "explicit", + }, + [1611] = { + ["id"] = "explicit.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "explicit", + }, + [1612] = { + ["id"] = "explicit.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "explicit", + }, + [1613] = { + ["id"] = "explicit.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "explicit", + }, + [1614] = { + ["id"] = "explicit.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", + ["type"] = "explicit", + }, + [1615] = { + ["id"] = "explicit.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "explicit", + }, + [1616] = { + ["id"] = "explicit.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "explicit", + }, + [1617] = { + ["id"] = "explicit.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "explicit", + }, + [1618] = { + ["id"] = "explicit.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "explicit", + }, + [1619] = { + ["id"] = "explicit.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "explicit", + }, + [1620] = { + ["id"] = "explicit.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "explicit", + }, + [1621] = { + ["id"] = "explicit.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "explicit", + }, + [1622] = { + ["id"] = "explicit.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "explicit", + }, + [1623] = { + ["id"] = "explicit.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "explicit", + }, + [1624] = { + ["id"] = "explicit.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "explicit", + }, + [1625] = { + ["id"] = "explicit.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "explicit", + }, + [1626] = { + ["id"] = "explicit.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "explicit", + }, + [1627] = { + ["id"] = "explicit.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "explicit", + }, + [1628] = { + ["id"] = "explicit.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "explicit", + }, + [1629] = { + ["id"] = "explicit.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "explicit", + }, + [1630] = { + ["id"] = "explicit.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "explicit", + }, + [1631] = { + ["id"] = "explicit.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "explicit", + }, + [1632] = { + ["id"] = "explicit.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "explicit", + }, + [1633] = { + ["id"] = "explicit.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "explicit", + }, + [1634] = { + ["id"] = "explicit.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "explicit", + }, + [1635] = { + ["id"] = "explicit.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "explicit", + }, + [1636] = { + ["id"] = "explicit.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "explicit", + }, + [1637] = { + ["id"] = "explicit.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "explicit", + }, + [1638] = { + ["id"] = "explicit.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "explicit", + }, + [1639] = { + ["id"] = "explicit.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "explicit", + }, + [1640] = { + ["id"] = "explicit.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "explicit", + }, + [1641] = { + ["id"] = "explicit.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "explicit", + }, + [1642] = { + ["id"] = "explicit.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "explicit", + }, + [1643] = { + ["id"] = "explicit.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "explicit", + }, + [1644] = { + ["id"] = "explicit.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "explicit", + }, + [1645] = { + ["id"] = "explicit.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "explicit", + }, + [1646] = { + ["id"] = "explicit.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "explicit", + }, + [1647] = { + ["id"] = "explicit.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "explicit", + }, + [1648] = { + ["id"] = "explicit.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "explicit", + }, + [1649] = { + ["id"] = "explicit.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "explicit", + }, + [1650] = { + ["id"] = "explicit.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "explicit", + }, + [1651] = { + ["id"] = "explicit.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "explicit", + }, + [1652] = { + ["id"] = "explicit.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "explicit", + }, + [1653] = { + ["id"] = "explicit.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "explicit", + }, + [1654] = { + ["id"] = "explicit.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "explicit", + }, + [1655] = { + ["id"] = "explicit.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "explicit", + }, + [1656] = { + ["id"] = "explicit.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "explicit", + }, + [1657] = { + ["id"] = "explicit.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "explicit", + }, + [1658] = { + ["id"] = "explicit.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "explicit", + }, + [1659] = { + ["id"] = "explicit.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "explicit", + }, + [1660] = { + ["id"] = "explicit.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "explicit", + }, + [1661] = { + ["id"] = "explicit.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "explicit", + }, + [1662] = { + ["id"] = "explicit.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "explicit", + }, + [1663] = { + ["id"] = "explicit.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "explicit", + }, + [1664] = { + ["id"] = "explicit.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "explicit", + }, + [1665] = { + ["id"] = "explicit.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "explicit", + }, + [1666] = { + ["id"] = "explicit.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "explicit", + }, + [1667] = { + ["id"] = "explicit.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "explicit", + }, + [1668] = { + ["id"] = "explicit.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "explicit", + }, + [1669] = { + ["id"] = "explicit.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "explicit", + }, + [1670] = { + ["id"] = "explicit.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "explicit", + }, + [1671] = { + ["id"] = "explicit.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "explicit", + }, + [1672] = { + ["id"] = "explicit.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "explicit", + }, + [1673] = { + ["id"] = "explicit.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "explicit", + }, + [1674] = { + ["id"] = "explicit.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "explicit", + }, + [1675] = { + ["id"] = "explicit.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "explicit", + }, + [1676] = { + ["id"] = "explicit.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "explicit", + }, + [1677] = { + ["id"] = "explicit.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "explicit", + }, + [1678] = { + ["id"] = "explicit.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "explicit", + }, + [1679] = { + ["id"] = "explicit.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "explicit", + }, + [1680] = { + ["id"] = "explicit.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "explicit", + }, + [1681] = { + ["id"] = "explicit.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "explicit", + }, + [1682] = { + ["id"] = "explicit.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "explicit", + }, + [1683] = { + ["id"] = "explicit.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "explicit", + }, + [1684] = { + ["id"] = "explicit.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "explicit", + }, + [1685] = { + ["id"] = "explicit.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "explicit", + }, + [1686] = { + ["id"] = "explicit.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "explicit", + }, + [1687] = { + ["id"] = "explicit.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "explicit", + }, + [1688] = { + ["id"] = "explicit.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "explicit", + }, + [1689] = { + ["id"] = "explicit.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "explicit", + }, + [1690] = { + ["id"] = "explicit.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "explicit", + }, + [1691] = { + ["id"] = "explicit.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "explicit", + }, + [1692] = { + ["id"] = "explicit.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "explicit", + }, + [1693] = { + ["id"] = "explicit.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "explicit", + }, + [1694] = { + ["id"] = "explicit.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "explicit", + }, + [1695] = { + ["id"] = "explicit.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "explicit", + }, + [1696] = { + ["id"] = "explicit.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "explicit", + }, + [1697] = { + ["id"] = "explicit.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "explicit", + }, + [1698] = { + ["id"] = "explicit.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "explicit", + }, + [1699] = { + ["id"] = "explicit.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "explicit", + }, + [1700] = { + ["id"] = "explicit.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "explicit", + }, + [1701] = { + ["id"] = "explicit.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "explicit", + }, + [1702] = { + ["id"] = "explicit.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "explicit", + }, + [1703] = { + ["id"] = "explicit.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "explicit", + }, + [1704] = { + ["id"] = "explicit.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "explicit", + }, + [1705] = { + ["id"] = "explicit.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "explicit", + }, + [1706] = { + ["id"] = "explicit.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "explicit", + }, + [1707] = { + ["id"] = "explicit.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "explicit", + }, + [1708] = { + ["id"] = "explicit.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "explicit", + }, + [1709] = { + ["id"] = "explicit.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "explicit", + }, + [1710] = { + ["id"] = "explicit.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "explicit", + }, + [1711] = { + ["id"] = "explicit.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "explicit", + }, + [1712] = { + ["id"] = "explicit.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "explicit", + }, + [1713] = { + ["id"] = "explicit.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "explicit", + }, + [1714] = { + ["id"] = "explicit.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "explicit", + }, + [1715] = { + ["id"] = "explicit.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "explicit", + }, + [1716] = { + ["id"] = "explicit.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "explicit", + }, + [1717] = { + ["id"] = "explicit.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "explicit", + }, + [1718] = { + ["id"] = "explicit.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "explicit", + }, + [1719] = { + ["id"] = "explicit.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "explicit", + }, + [1720] = { + ["id"] = "explicit.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "explicit", + }, + [1721] = { + ["id"] = "explicit.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "explicit", + }, + [1722] = { + ["id"] = "explicit.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "explicit", + }, + [1723] = { + ["id"] = "explicit.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "explicit", + }, + [1724] = { + ["id"] = "explicit.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "explicit", + }, + [1725] = { + ["id"] = "explicit.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "explicit", + }, + [1726] = { + ["id"] = "explicit.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "explicit", + }, + [1727] = { + ["id"] = "explicit.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "explicit", + }, + [1728] = { + ["id"] = "explicit.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "explicit", + }, + [1729] = { + ["id"] = "explicit.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "explicit", + }, + [1730] = { + ["id"] = "explicit.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "explicit", + }, + [1731] = { + ["id"] = "explicit.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "explicit", + }, + [1732] = { + ["id"] = "explicit.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "explicit", + }, + [1733] = { + ["id"] = "explicit.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "explicit", + }, + [1734] = { + ["id"] = "explicit.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "explicit", + }, + [1735] = { + ["id"] = "explicit.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "explicit", + }, + [1736] = { + ["id"] = "explicit.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "explicit", + }, + [1737] = { + ["id"] = "explicit.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "explicit", + }, + [1738] = { + ["id"] = "explicit.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "explicit", + }, + [1739] = { + ["id"] = "explicit.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "explicit", + }, + [1740] = { + ["id"] = "explicit.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "explicit", + }, + [1741] = { + ["id"] = "explicit.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "explicit", + }, + [1742] = { + ["id"] = "explicit.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "explicit", + }, + [1743] = { + ["id"] = "explicit.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "explicit", + }, + [1744] = { + ["id"] = "explicit.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "explicit", + }, + [1745] = { + ["id"] = "explicit.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "explicit", + }, + [1746] = { + ["id"] = "explicit.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "explicit", + }, + [1747] = { + ["id"] = "explicit.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "explicit", + }, + [1748] = { + ["id"] = "explicit.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "explicit", + }, + [1749] = { + ["id"] = "explicit.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "explicit", + }, + [1750] = { + ["id"] = "explicit.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "explicit", + }, + [1751] = { + ["id"] = "explicit.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "explicit", + }, + [1752] = { + ["id"] = "explicit.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "explicit", + }, + [1753] = { + ["id"] = "explicit.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "explicit", + }, + [1754] = { + ["id"] = "explicit.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "explicit", + }, + [1755] = { + ["id"] = "explicit.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "explicit", + }, + [1756] = { + ["id"] = "explicit.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "explicit", + }, + [1757] = { + ["id"] = "explicit.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "explicit", + }, + [1758] = { + ["id"] = "explicit.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "explicit", + }, + [1759] = { + ["id"] = "explicit.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "explicit", + }, + [1760] = { + ["id"] = "explicit.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "explicit", + }, + [1761] = { + ["id"] = "explicit.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "explicit", + }, + [1762] = { + ["id"] = "explicit.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", + ["type"] = "explicit", + }, + [1763] = { + ["id"] = "explicit.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "explicit", + }, + [1764] = { + ["id"] = "explicit.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "explicit", + }, + [1765] = { + ["id"] = "explicit.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "explicit", + }, + [1766] = { + ["id"] = "explicit.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "explicit", + }, + [1767] = { + ["id"] = "explicit.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "explicit", + }, + [1768] = { + ["id"] = "explicit.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "explicit", + }, + [1769] = { + ["id"] = "explicit.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "explicit", + }, + [1770] = { + ["id"] = "explicit.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "explicit", + }, + [1771] = { + ["id"] = "explicit.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "explicit", + }, + [1772] = { + ["id"] = "explicit.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "explicit", + }, + [1773] = { + ["id"] = "explicit.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "explicit", + }, + [1774] = { + ["id"] = "explicit.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "explicit", + }, + [1775] = { + ["id"] = "explicit.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "explicit", + }, + [1776] = { + ["id"] = "explicit.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "explicit", + }, + [1777] = { + ["id"] = "explicit.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "explicit", + }, + [1778] = { + ["id"] = "explicit.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "explicit", + }, + [1779] = { + ["id"] = "explicit.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "explicit", + }, + [1780] = { + ["id"] = "explicit.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "explicit", + }, + [1781] = { + ["id"] = "explicit.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "explicit", + }, + [1782] = { + ["id"] = "explicit.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "explicit", + }, + [1783] = { + ["id"] = "explicit.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "explicit", + }, + [1784] = { + ["id"] = "explicit.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "explicit", + }, + [1785] = { + ["id"] = "explicit.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "explicit", + }, + [1786] = { + ["id"] = "explicit.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "explicit", + }, + [1787] = { + ["id"] = "explicit.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "explicit", + }, + [1788] = { + ["id"] = "explicit.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "explicit", + }, + [1789] = { + ["id"] = "explicit.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "explicit", + }, + [1790] = { + ["id"] = "explicit.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "explicit", + }, + [1791] = { + ["id"] = "explicit.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "explicit", + }, + [1792] = { + ["id"] = "explicit.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "explicit", + }, + [1793] = { + ["id"] = "explicit.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "explicit", + }, + [1794] = { + ["id"] = "explicit.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "explicit", + }, + [1795] = { + ["id"] = "explicit.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "explicit", + }, + [1796] = { + ["id"] = "explicit.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "explicit", + }, + [1797] = { + ["id"] = "explicit.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "explicit", + }, + [1798] = { + ["id"] = "explicit.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "explicit", + }, + [1799] = { + ["id"] = "explicit.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "explicit", + }, + [1800] = { + ["id"] = "explicit.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "explicit", + }, + [1801] = { + ["id"] = "explicit.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "explicit", + }, + [1802] = { + ["id"] = "explicit.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "explicit", + }, + [1803] = { + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + [1804] = { + ["id"] = "explicit.stat_258955603", + ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", + ["type"] = "explicit", + }, + [1805] = { + ["id"] = "explicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "explicit", + }, + [1806] = { + ["id"] = "explicit.stat_2214130968", + ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", + ["type"] = "explicit", + }, + [1807] = { + ["id"] = "explicit.stat_3831171903|1", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + [1808] = { + ["id"] = "explicit.stat_4021234281", + ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", + ["type"] = "explicit", + }, + [1809] = { + ["id"] = "explicit.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "explicit", + }, + [1810] = { + ["id"] = "explicit.stat_3490187949", + ["text"] = "Area contains # additional Abysses", + ["type"] = "explicit", + }, + [1811] = { + ["id"] = "explicit.stat_358129101", + ["text"] = "Area contains # additional Azmeri Spirit", + ["type"] = "explicit", + }, + [1812] = { + ["id"] = "explicit.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", + ["type"] = "explicit", + }, + [1813] = { + ["id"] = "explicit.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", + ["type"] = "explicit", + }, + [1814] = { + ["id"] = "explicit.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["type"] = "explicit", + }, + [1815] = { + ["id"] = "explicit.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", + ["type"] = "explicit", + }, + [1816] = { + ["id"] = "explicit.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "explicit", + }, + [1817] = { + ["id"] = "explicit.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", + ["type"] = "explicit", + }, + [1818] = { + ["id"] = "explicit.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", + ["type"] = "explicit", + }, + [1819] = { + ["id"] = "explicit.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", + ["type"] = "explicit", + }, + [1820] = { + ["id"] = "explicit.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", + ["type"] = "explicit", + }, + [1821] = { + ["id"] = "explicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + [1822] = { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "explicit", + }, + [1823] = { + ["id"] = "explicit.stat_395808938", + ["text"] = "Area contains an additional Essence", + ["type"] = "explicit", + }, + [1824] = { + ["id"] = "explicit.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", + ["type"] = "explicit", + }, + [1825] = { + ["id"] = "explicit.stat_2396719220", + ["text"] = "Area contains an additional Magic Chest", + ["type"] = "explicit", + }, + [1826] = { + ["id"] = "explicit.stat_231864447", + ["text"] = "Area contains an additional Rare Chest", + ["type"] = "explicit", + }, + [1827] = { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Area contains an additional Shrine", + ["type"] = "explicit", + }, + [1828] = { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", + ["type"] = "explicit", + }, + [1829] = { + ["id"] = "explicit.stat_2839545956", + ["text"] = "Area contains an additional Summoning Circle", + ["type"] = "explicit", + }, + [1830] = { + ["id"] = "explicit.stat_2571125745", + ["text"] = "Area has #% chance to contain a Shrine", + ["type"] = "explicit", + }, + [1831] = { + ["id"] = "explicit.stat_2388936716", + ["text"] = "Area has #% chance to contain a Strongbox", + ["type"] = "explicit", + }, + [1832] = { + ["id"] = "explicit.stat_4098286334", + ["text"] = "Area has #% chance to contain an Essence", + ["type"] = "explicit", + }, + [1833] = { + ["id"] = "explicit.stat_2890355696", + ["text"] = "Area has #% chance to contain four additional Abysses", + ["type"] = "explicit", + }, + [1834] = { + ["id"] = "explicit.stat_3815617979", + ["text"] = "Area has #% increased chance to contain Azmeri Spirits", + ["type"] = "explicit", + }, + [1835] = { + ["id"] = "explicit.stat_1825943485", + ["text"] = "Area has #% increased chance to contain Essences", + ["type"] = "explicit", + }, + [1836] = { + ["id"] = "explicit.stat_1352729973", + ["text"] = "Area has #% increased chance to contain Rogue Exiles", + ["type"] = "explicit", + }, + [1837] = { + ["id"] = "explicit.stat_689816330", + ["text"] = "Area has #% increased chance to contain Shrines", + ["type"] = "explicit", + }, + [1838] = { + ["id"] = "explicit.stat_4279535856", + ["text"] = "Area has #% increased chance to contain Strongboxes", + ["type"] = "explicit", + }, + [1839] = { + ["id"] = "explicit.stat_267210597", + ["text"] = "Area has #% increased chance to contain a Summoning Circle", + ["type"] = "explicit", + }, + [1840] = { + ["id"] = "explicit.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "explicit", + }, + [1841] = { + ["id"] = "explicit.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "explicit", + }, + [1842] = { + ["id"] = "explicit.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", + ["type"] = "explicit", + }, + [1843] = { + ["id"] = "explicit.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "explicit", + }, + [1844] = { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Area is inhabited by # additional Rogue Exile", + ["type"] = "explicit", + }, + [1845] = { + ["id"] = "explicit.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", + ["type"] = "explicit", + }, + [1846] = { + ["id"] = "explicit.stat_3049505189", + ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", + ["type"] = "explicit", + }, + [1847] = { + ["id"] = "explicit.stat_2440265466", + ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", + ["type"] = "explicit", + }, + [1848] = { + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", + ["type"] = "explicit", + }, + [1849] = { + ["id"] = "explicit.stat_775597083", + ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", + ["type"] = "explicit", + }, + [1850] = { + ["id"] = "explicit.stat_2162684861", + ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", + ["type"] = "explicit", + }, + [1851] = { + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", + ["type"] = "explicit", + }, + [1852] = { + ["id"] = "explicit.stat_3040603554", + ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", + ["type"] = "explicit", + }, + [1853] = { + ["id"] = "explicit.stat_713266390", + ["text"] = "Armour is increased by Uncapped Fire Resistance", + ["type"] = "explicit", + }, + [1854] = { + ["id"] = "explicit.stat_2421436896", + ["text"] = "Arrows Fork", + ["type"] = "explicit", + }, + [1855] = { + ["id"] = "explicit.stat_2138799639", + ["text"] = "Arrows Pierce all targets after Forking", + ["type"] = "explicit", + }, + [1856] = { + ["id"] = "explicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "explicit", + }, + [1857] = { + ["id"] = "explicit.stat_1243721142", + ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", + ["type"] = "explicit", + }, + [1858] = { + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + [1859] = { + ["id"] = "explicit.stat_33298888", + ["text"] = "Attack Hits inflict Spectral Fire for # seconds", + ["type"] = "explicit", + }, + [1860] = { + ["id"] = "explicit.stat_2720781168", + ["text"] = "Attack Projectiles Return if they Pierced at least # times", + ["type"] = "explicit", + }, + [1861] = { + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "explicit", + }, + [1862] = { + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [1863] = { + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [1864] = { + ["id"] = "explicit.stat_261503687", + ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + [1865] = { + ["id"] = "explicit.stat_3550545679", + ["text"] = "Attacks consume an Endurance Charge to Critically Hit", + ["type"] = "explicit", + }, + [1866] = { + ["id"] = "explicit.stat_2157692677", + ["text"] = "Attacks cost an additional #% of your maximum Mana", + ["type"] = "explicit", + }, + [1867] = { + ["id"] = "explicit.stat_3258071686", + ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", + ["type"] = "explicit", + }, + [1868] = { + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["type"] = "explicit", + }, + [1869] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + [1870] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + [1871] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + [1872] = { + ["id"] = "explicit.stat_3620731914", + ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", + ["type"] = "explicit", + }, + [1873] = { + ["id"] = "explicit.stat_566086661", + ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", + ["type"] = "explicit", + }, + [1874] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + [1875] = { + ["id"] = "explicit.stat_3831171903|4", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + [1876] = { + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [1877] = { + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + [1878] = { + ["id"] = "explicit.stat_1761741119", + ["text"] = "Banners always have maximum Valour", + ["type"] = "explicit", + }, + [1879] = { + ["id"] = "explicit.stat_2635559734", + ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", + ["type"] = "explicit", + }, + [1880] = { + ["id"] = "explicit.stat_4287372938", + ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", + ["type"] = "explicit", + }, + [1881] = { + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", + }, + [1882] = { + ["id"] = "explicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "explicit", + }, + [1883] = { + ["id"] = "explicit.stat_3831171903|28", + ["text"] = "Blackflame Covenant", + ["type"] = "explicit", + }, + [1884] = { + ["id"] = "explicit.stat_1016759424", + ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", + ["type"] = "explicit", + }, + [1885] = { + ["id"] = "explicit.stat_841429130", + ["text"] = "Bleeding you inflict is Aggravated", + ["type"] = "explicit", + }, + [1886] = { + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled enemies on Hit", + ["type"] = "explicit", + }, + [1887] = { + ["id"] = "explicit.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + [1888] = { + ["id"] = "explicit.stat_60826109", + ["text"] = "Blind Targets when you Poison them", + ["type"] = "explicit", + }, + [1889] = { + ["id"] = "explicit.stat_4195198267", + ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", + ["type"] = "explicit", + }, + [1890] = { + ["id"] = "explicit.stat_3831171903|5", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + [1891] = { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + [1892] = { + ["id"] = "explicit.stat_842299438", + ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", + ["type"] = "explicit", + }, + [1893] = { + ["id"] = "explicit.stat_3893788785", + ["text"] = "Bow Attacks consume #% of your maximum Life Flask Charges if possible to deal added Physical damage equal to #% of Flask's Life Recovery amount", + ["type"] = "explicit", + }, + [1894] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + [1895] = { + ["id"] = "explicit.stat_2734787892", + ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", + ["type"] = "explicit", + }, + [1896] = { + ["id"] = "explicit.stat_1217651243", + ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", + ["type"] = "explicit", + }, + [1897] = { + ["id"] = "explicit.stat_1210760818", + ["text"] = "Breaches have #% increased Monster density", + ["type"] = "explicit", + }, + [1898] = { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in Area contain # additional Clasped Hand", + ["type"] = "explicit", + }, + [1899] = { + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in Area spawn #% increased Magic Monsters", + ["type"] = "explicit", + }, + [1900] = { + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in Area spawn an additional Rare Monster", + ["type"] = "explicit", + }, + [1901] = { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in your Maps contain # additional Clasped Hand", + ["type"] = "explicit", + }, + [1902] = { + ["id"] = "explicit.stat_1217651243", + ["text"] = "Breaches in your Maps expand to at least # metre in radiusBreaches in your Maps remain open while there are alive Breach Monsters", + ["type"] = "explicit", + }, + [1903] = { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches in your Maps open and close #% faster", + ["type"] = "explicit", + }, + [1904] = { + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", + ["type"] = "explicit", + }, + [1905] = { + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in your Maps spawn an additional Rare Monster", + ["type"] = "explicit", + }, + [1906] = { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches open and close #% faster", + ["type"] = "explicit", + }, + [1907] = { + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", + }, + [1908] = { + ["id"] = "explicit.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [1909] = { + ["id"] = "explicit.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [1910] = { + ["id"] = "explicit.stat_949573361", + ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", + ["type"] = "explicit", + }, + [1911] = { + ["id"] = "explicit.stat_3831171903|24", + ["text"] = "Bulwark", + ["type"] = "explicit", + }, + [1912] = { + ["id"] = "explicit.stat_1617268696", + ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing atenth of their maximum Life as Fire Damage", + ["type"] = "explicit", + }, + [1913] = { + ["id"] = "explicit.stat_738592688", + ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", + ["type"] = "explicit", + }, + [1914] = { + ["id"] = "explicit.stat_3116298775", + ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", + ["type"] = "explicit", + }, + [1915] = { + ["id"] = "explicit.stat_2218479786", + ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", + ["type"] = "explicit", + }, + [1916] = { + ["id"] = "explicit.stat_3359496001", + ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", + ["type"] = "explicit", + }, + [1917] = { + ["id"] = "explicit.stat_1688294122", + ["text"] = "Can Allocate Passive Skills from the Templar's starting point", + ["type"] = "explicit", + }, + [1918] = { + ["id"] = "explicit.stat_1359862146", + ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", + ["type"] = "explicit", + }, + [1919] = { + ["id"] = "explicit.stat_627896047", + ["text"] = "Can Attack as though using a One Handed Mace while both of your hand slots are emptyUnarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", + ["type"] = "explicit", + }, + [1920] = { + ["id"] = "explicit.stat_2500154144", + ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", + ["type"] = "explicit", + }, + [1921] = { + ["id"] = "explicit.stat_1161337167", + ["text"] = "Can be modified while Corrupted", + ["type"] = "explicit", + }, + [1922] = { + ["id"] = "explicit.stat_1135194732", + ["text"] = "Can have # additional Instilled Modifiers", + ["type"] = "explicit", + }, + [1923] = { + ["id"] = "explicit.stat_3418590244", + ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", + ["type"] = "explicit", + }, + [1924] = { + ["id"] = "explicit.stat_4007482102", + ["text"] = "Can't use Body Armour", + ["type"] = "explicit", + }, + [1925] = { + ["id"] = "explicit.stat_64726306", + ["text"] = "Can't use other Rings", + ["type"] = "explicit", + }, + [1926] = { + ["id"] = "explicit.stat_1465760952", + ["text"] = "Cannot Block", + ["type"] = "explicit", + }, + [1927] = { + ["id"] = "explicit.stat_474452755", + ["text"] = "Cannot Evade Enemy Attacks", + ["type"] = "explicit", + }, + [1928] = { + ["id"] = "explicit.stat_4062529591", + ["text"] = "Cannot Immobilise enemies", + ["type"] = "explicit", + }, + [1929] = { + ["id"] = "explicit.stat_1458880585", + ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [1930] = { + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", + }, + [1931] = { + ["id"] = "explicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "explicit", + }, + [1932] = { + ["id"] = "explicit.stat_1000739259", + ["text"] = "Cannot be Light Stunned", + ["type"] = "explicit", + }, + [1933] = { + ["id"] = "explicit.stat_2252419505", + ["text"] = "Cannot be Light Stunned by Deflected Hits", + ["type"] = "explicit", + }, + [1934] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + [1935] = { + ["id"] = "explicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "explicit", + }, + [1936] = { + ["id"] = "explicit.stat_1237409891", + ["text"] = "Cannot be Used manually", + ["type"] = "explicit", + }, + [1937] = { + ["id"] = "explicit.stat_398335579", + ["text"] = "Cannot be used while Manifested", + ["type"] = "explicit", + }, + [1938] = { + ["id"] = "explicit.stat_410952253", + ["text"] = "Cannot have Energy Shield", + ["type"] = "explicit", + }, + [1939] = { + ["id"] = "explicit.stat_4056809290", + ["text"] = "Cannot inflict Elemental Ailments", + ["type"] = "explicit", + }, + [1940] = { + ["id"] = "explicit.stat_1580426064", + ["text"] = "Cannot use Life FlasksNon-Unique Life Flasks apply their Effects constantlyRecovery from Life Flasks cannot be InstantRecovery from your Life Flasks cannot be applied to anything other than you", + ["type"] = "explicit", + }, + [1941] = { + ["id"] = "explicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", + ["type"] = "explicit", + }, + [1942] = { + ["id"] = "explicit.stat_65135897", + ["text"] = "Cannot use Shield Skills", + ["type"] = "explicit", + }, + [1943] = { + ["id"] = "explicit.stat_2598171606", + ["text"] = "Cannot use Warcries", + ["type"] = "explicit", + }, + [1944] = { + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "explicit", + }, + [1945] = { + ["id"] = "explicit.stat_2091621414", + ["text"] = "Causes Bleeding on Hit", + ["type"] = "explicit", + }, + [1946] = { + ["id"] = "explicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["type"] = "explicit", + }, + [1947] = { + ["id"] = "explicit.stat_769129523", + ["text"] = "Causes Double Stun Buildup", + ["type"] = "explicit", + }, + [1948] = { + ["id"] = "explicit.stat_2957287092", + ["text"] = "Chance to Block Damage is Lucky", + ["type"] = "explicit", + }, + [1949] = { + ["id"] = "explicit.stat_1675120891", + ["text"] = "Chance to Deflect is Lucky while on Low Life", + ["type"] = "explicit", + }, + [1950] = { + ["id"] = "explicit.stat_2315177528", + ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", + ["type"] = "explicit", + }, + [1951] = { + ["id"] = "explicit.stat_2973498992", + ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", + ["type"] = "explicit", + }, + [1952] = { + ["id"] = "explicit.stat_2418601510", + ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", + ["type"] = "explicit", + }, + [1953] = { + ["id"] = "explicit.stat_3831171903|8", + ["text"] = "Chaos Inoculation", + ["type"] = "explicit", + }, + [1954] = { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is zero", + ["type"] = "explicit", + }, + [1955] = { + ["id"] = "explicit.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", + ["type"] = "explicit", + }, + [1956] = { + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", + }, + [1957] = { + ["id"] = "explicit.stat_2620375641", + ["text"] = "Charms use no Charges", + ["type"] = "explicit", + }, + [1958] = { + ["id"] = "explicit.stat_1261612903", + ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + ["type"] = "explicit", + }, + [1959] = { + ["id"] = "explicit.stat_4207433208", + ["text"] = "Cold Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [1960] = { + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + [1961] = { + ["id"] = "explicit.stat_1067622524", + ["text"] = "Companions deal #% increased damage to your Marked targets", + ["type"] = "explicit", + }, + [1962] = { + ["id"] = "explicit.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "explicit", + }, + [1963] = { + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + [1964] = { + ["id"] = "explicit.stat_3831171903|13", + ["text"] = "Conduit", + ["type"] = "explicit", + }, + [1965] = { + ["id"] = "explicit.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["type"] = "explicit", + }, + [1966] = { + ["id"] = "explicit.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["type"] = "explicit", + }, + [1967] = { + ["id"] = "explicit.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["type"] = "explicit", + }, + [1968] = { + ["id"] = "explicit.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["type"] = "explicit", + }, + [1969] = { + ["id"] = "explicit.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["type"] = "explicit", + }, + [1970] = { + ["id"] = "explicit.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["type"] = "explicit", + }, + [1971] = { + ["id"] = "explicit.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["type"] = "explicit", + }, + [1972] = { + ["id"] = "explicit.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["type"] = "explicit", + }, + [1973] = { + ["id"] = "explicit.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [1974] = { + ["id"] = "explicit.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["type"] = "explicit", + }, + [1975] = { + ["id"] = "explicit.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["type"] = "explicit", + }, + [1976] = { + ["id"] = "explicit.stat_468694293", + ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + [1977] = { + ["id"] = "explicit.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [1978] = { + ["id"] = "explicit.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["type"] = "explicit", + }, + [1979] = { + ["id"] = "explicit.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["type"] = "explicit", + }, + [1980] = { + ["id"] = "explicit.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["type"] = "explicit", + }, + [1981] = { + ["id"] = "explicit.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + [1982] = { + ["id"] = "explicit.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["type"] = "explicit", + }, + [1983] = { + ["id"] = "explicit.stat_1683568809", + ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", + ["type"] = "explicit", + }, + [1984] = { + ["id"] = "explicit.stat_4274637468", + ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + ["type"] = "explicit", + }, + [1985] = { + ["id"] = "explicit.stat_2896801635", + ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", + ["type"] = "explicit", + }, + [1986] = { + ["id"] = "explicit.stat_3351912431", + ["text"] = "Convert All Armour to Evasion Rating", + ["type"] = "explicit", + }, + [1987] = { + ["id"] = "explicit.stat_885925163", + ["text"] = "Copy a random Modifier from each enemy in your Presence whenyou Shapeshift to an Animal formModifiers gained this way are lost after # seconds or when you next Shapeshift", + ["type"] = "explicit", + }, + [1988] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + [1989] = { + ["id"] = "explicit.stat_891466814", + ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", + ["type"] = "explicit", + }, + [1990] = { + ["id"] = "explicit.stat_3849649145", + ["text"] = "Creates Consecrated Ground on use", + ["type"] = "explicit", + }, + [1991] = { + ["id"] = "explicit.stat_39209842", + ["text"] = "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to #% of your maximum Life", + ["type"] = "explicit", + }, + [1992] = { + ["id"] = "explicit.stat_3831171903|26", + ["text"] = "Crimson Assault", + ["type"] = "explicit", + }, + [1993] = { + ["id"] = "explicit.stat_1289045485", + ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", + ["type"] = "explicit", + }, + [1994] = { + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", + ["type"] = "explicit", + }, + [1995] = { + ["id"] = "explicit.stat_3414998042", + ["text"] = "Critical Hits cannot Extract Impale", + ["type"] = "explicit", + }, + [1996] = { + ["id"] = "explicit.stat_1094937621", + ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", + ["type"] = "explicit", + }, + [1997] = { + ["id"] = "explicit.stat_3058238353", + ["text"] = "Critical Hits inflict Impale", + ["type"] = "explicit", + }, + [1998] = { + ["id"] = "explicit.stat_1550131834", + ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", + ["type"] = "explicit", + }, + [1999] = { + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + [2000] = { + ["id"] = "explicit.stat_1158324489", + ["text"] = "Culling Strike against Frozen Enemies", + ["type"] = "explicit", + }, + [2001] = { + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + [2002] = { + ["id"] = "explicit.stat_3751072557", + ["text"] = "Curses have no Activation Delay", + ["type"] = "explicit", + }, + [2003] = { + ["id"] = "explicit.stat_4275855121", + ["text"] = "Curses you inflict are reflected back to you", + ["type"] = "explicit", + }, + [2004] = { + ["id"] = "explicit.stat_1367119630", + ["text"] = "Curses you inflict can affect Hexproof Enemies", + ["type"] = "explicit", + }, + [2005] = { + ["id"] = "explicit.stat_2609822974", + ["text"] = "Curses you inflict have infinite Duration", + ["type"] = "explicit", + }, + [2006] = { + ["id"] = "explicit.stat_1793470535", + ["text"] = "Curses you inflict ignore Curse limit", + ["type"] = "explicit", + }, + [2007] = { + ["id"] = "explicit.stat_986616727", + ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["type"] = "explicit", + }, + [2008] = { + ["id"] = "explicit.stat_2875218423", + ["text"] = "Damage Blocked is Recouped as Mana", + ["type"] = "explicit", + }, + [2009] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + [2010] = { + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + [2011] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + [2012] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + [2013] = { + ["id"] = "explicit.stat_3753748365", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["type"] = "explicit", + }, + [2014] = { + ["id"] = "explicit.stat_2894895028", + ["text"] = "Damage over Time bypasses your Energy ShieldWhile not on Full Life, Sacrifice #% of maximum Mana per Second to Recover that much Life", + ["type"] = "explicit", + }, + [2015] = { + ["id"] = "explicit.stat_2886108529", + ["text"] = "Damage over Time cannot bypass your Energy Shield", + ["type"] = "explicit", + }, + [2016] = { + ["id"] = "explicit.stat_2432200638", + ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", + ["type"] = "explicit", + }, + [2017] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + [2018] = { + ["id"] = "explicit.stat_3831171903|17", + ["text"] = "Dance With Death", + ["type"] = "explicit", + }, + [2019] = { + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + [2020] = { + ["id"] = "explicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + [2021] = { + ["id"] = "explicit.stat_4258409981", + ["text"] = "Deal #% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", + ["type"] = "explicit", + }, + [2022] = { + ["id"] = "explicit.stat_2301852600", + ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", + ["type"] = "explicit", + }, + [2023] = { + ["id"] = "explicit.stat_2998305364", + ["text"] = "Deal no Elemental Damage", + ["type"] = "explicit", + }, + [2024] = { + ["id"] = "explicit.stat_2107791433", + ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + ["type"] = "explicit", + }, + [2025] = { + ["id"] = "explicit.stat_3311259821", + ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", + ["type"] = "explicit", + }, + [2026] = { + ["id"] = "explicit.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + [2027] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + [2028] = { + ["id"] = "explicit.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "explicit", + }, + [2029] = { + ["id"] = "explicit.stat_3872034802", + ["text"] = "Decimating Strike", + ["type"] = "explicit", + }, + [2030] = { + ["id"] = "explicit.stat_679087890", + ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", + ["type"] = "explicit", + }, + [2031] = { + ["id"] = "explicit.stat_1539671749", + ["text"] = "Defend with #% of Armour while you have Energy Shield", + ["type"] = "explicit", + }, + [2032] = { + ["id"] = "explicit.stat_3387008487", + ["text"] = "Defend with 200% of Armour", + ["type"] = "explicit", + }, + [2033] = { + ["id"] = "explicit.stat_3138344128", + ["text"] = "Defend with 200% of Armour during effect", + ["type"] = "explicit", + }, + [2034] = { + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [2035] = { + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", + ["type"] = "explicit", + }, + [2036] = { + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", + ["type"] = "explicit", + }, + [2037] = { + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", + ["type"] = "explicit", + }, + [2038] = { + ["id"] = "explicit.stat_3962960008", + ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", + ["type"] = "explicit", + }, + [2039] = { + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", + ["type"] = "explicit", + }, + [2040] = { + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", + ["type"] = "explicit", + }, + [2041] = { + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog dissipates #% faster", + ["type"] = "explicit", + }, + [2042] = { + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog in Area dissipates #% faster", + ["type"] = "explicit", + }, + [2043] = { + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2044] = { + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2045] = { + ["id"] = "explicit.stat_551040294", + ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", + ["type"] = "explicit", + }, + [2046] = { + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2047] = { + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2048] = { + ["id"] = "explicit.stat_1084853859", + ["text"] = "Delirium Fog in your Maps never dissipates", + ["type"] = "explicit", + }, + [2049] = { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in Area have #% increased Pack Size", + ["type"] = "explicit", + }, + [2050] = { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + [2051] = { + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in Area increases #% faster with distance from the mirror", + ["type"] = "explicit", + }, + [2052] = { + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", + ["type"] = "explicit", + }, + [2053] = { + ["id"] = "explicit.stat_2971398565", + ["text"] = "Divine Flight", + ["type"] = "explicit", + }, + [2054] = { + ["id"] = "explicit.stat_3518087336", + ["text"] = "Dodge Roll avoids all Hits", + ["type"] = "explicit", + }, + [2055] = { + ["id"] = "explicit.stat_1298316550", + ["text"] = "Dodge Roll passes through Enemies", + ["type"] = "explicit", + }, + [2056] = { + ["id"] = "explicit.stat_3686997387", + ["text"] = "Double Stun Threshold while Shield is Raised", + ["type"] = "explicit", + }, + [2057] = { + ["id"] = "explicit.stat_2356156926", + ["text"] = "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to #% of your maximum Life", + ["type"] = "explicit", + }, + [2058] = { + ["id"] = "explicit.stat_65133983", + ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", + ["type"] = "explicit", + }, + [2059] = { + ["id"] = "explicit.stat_3891922348", + ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + ["type"] = "explicit", + }, + [2060] = { + ["id"] = "explicit.stat_2103621252", + ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", + ["type"] = "explicit", + }, + [2061] = { + ["id"] = "explicit.stat_2932359713", + ["text"] = "Effect is not removed when Unreserved Life is Filled", + ["type"] = "explicit", + }, + [2062] = { + ["id"] = "explicit.stat_3969608626", + ["text"] = "Effect is not removed when Unreserved Mana is Filled", + ["type"] = "explicit", + }, + [2063] = { + ["id"] = "explicit.stat_3831171903|9", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + [2064] = { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + [2065] = { + ["id"] = "explicit.stat_1000566389", + ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + ["type"] = "explicit", + }, + [2066] = { + ["id"] = "explicit.stat_1370804479", + ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", + ["type"] = "explicit", + }, + [2067] = { + ["id"] = "explicit.stat_2678924815", + ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", + ["type"] = "explicit", + }, + [2068] = { + ["id"] = "explicit.stat_3831171903|23", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + [2069] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + [2070] = { + ["id"] = "explicit.stat_3119292058", + ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["type"] = "explicit", + }, + [2071] = { + ["id"] = "explicit.stat_1816894864", + ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + ["type"] = "explicit", + }, + [2072] = { + ["id"] = "explicit.stat_849085925", + ["text"] = "Enemies Frozen by you take #% increased Damage", + ["type"] = "explicit", + }, + [2073] = { + ["id"] = "explicit.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["type"] = "explicit", + }, + [2074] = { + ["id"] = "explicit.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["type"] = "explicit", + }, + [2075] = { + ["id"] = "explicit.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["type"] = "explicit", + }, + [2076] = { + ["id"] = "explicit.stat_1613322341", + ["text"] = "Enemies Immobilised by you take #% less Damage", + ["type"] = "explicit", + }, + [2077] = { + ["id"] = "explicit.stat_381470861", + ["text"] = "Enemies are Culled on Block", + ["type"] = "explicit", + }, + [2078] = { + ["id"] = "explicit.stat_3868746097", + ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", + ["type"] = "explicit", + }, + [2079] = { + ["id"] = "explicit.stat_1224838456", + ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [2080] = { + ["id"] = "explicit.stat_2786852525", + ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + ["type"] = "explicit", + }, + [2081] = { + ["id"] = "explicit.stat_2080373320", + ["text"] = "Enemies in your Presence are Blinded", + ["type"] = "explicit", + }, + [2082] = { + ["id"] = "explicit.stat_1464727508", + ["text"] = "Enemies in your Presence are Blinded", + ["type"] = "explicit", + }, + [2083] = { + ["id"] = "explicit.stat_2890401248", + ["text"] = "Enemies in your Presence are Hindered", + ["type"] = "explicit", + }, + [2084] = { + ["id"] = "explicit.stat_1433051415", + ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", + ["type"] = "explicit", + }, + [2085] = { + ["id"] = "explicit.stat_3491722585", + ["text"] = "Enemies in your Presence are Intimidated", + ["type"] = "explicit", + }, + [2086] = { + ["id"] = "explicit.stat_1285684287", + ["text"] = "Enemies in your Presence count as being on Low Life", + ["type"] = "explicit", + }, + [2087] = { + ["id"] = "explicit.stat_2836928993", + ["text"] = "Enemies in your Presence count as having double Power", + ["type"] = "explicit", + }, + [2088] = { + ["id"] = "explicit.stat_3628041050", + ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", + ["type"] = "explicit", + }, + [2089] = { + ["id"] = "explicit.stat_990363519", + ["text"] = "Enemies in your Presence have #% to Fire Resistance", + ["type"] = "explicit", + }, + [2090] = { + ["id"] = "explicit.stat_724806967", + ["text"] = "Enemies in your Presence have Exposure", + ["type"] = "explicit", + }, + [2091] = { + ["id"] = "explicit.stat_1546580830", + ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", + ["type"] = "explicit", + }, + [2092] = { + ["id"] = "explicit.stat_1827379101", + ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", + ["type"] = "explicit", + }, + [2093] = { + ["id"] = "explicit.stat_1953536251", + ["text"] = "Enemies in your Presence have at least #% of Life Reserved", + ["type"] = "explicit", + }, + [2094] = { + ["id"] = "explicit.stat_83011992", + ["text"] = "Enemies in your Presence have no Elemental Resistances", + ["type"] = "explicit", + }, + [2095] = { + ["id"] = "explicit.stat_1576794517", + ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", + ["type"] = "explicit", + }, + [2096] = { + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", + ["type"] = "explicit", + }, + [2097] = { + ["id"] = "explicit.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2098] = { + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "explicit", + }, + [2099] = { + ["id"] = "explicit.stat_1776945532", + ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["type"] = "explicit", + }, + [2100] = { + ["id"] = "explicit.stat_793801176", + ["text"] = "Energy Generation is doubled", + ["type"] = "explicit", + }, + [2101] = { + ["id"] = "explicit.stat_1419390131", + ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + ["type"] = "explicit", + }, + [2102] = { + ["id"] = "explicit.stat_1056492907", + ["text"] = "Energy Shield Recharge starts on use", + ["type"] = "explicit", + }, + [2103] = { + ["id"] = "explicit.stat_2402413437", + ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", + ["type"] = "explicit", + }, + [2104] = { + ["id"] = "explicit.stat_2147773348", + ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", + ["type"] = "explicit", + }, + [2105] = { + ["id"] = "explicit.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + [2106] = { + ["id"] = "explicit.stat_2480151124", + ["text"] = "Equipment has no Attribute Requirements", + ["type"] = "explicit", + }, + [2107] = { + ["id"] = "explicit.stat_3831171903|15", + ["text"] = "Eternal Youth", + ["type"] = "explicit", + }, + [2108] = { + ["id"] = "explicit.stat_1272938854", + ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", + ["type"] = "explicit", + }, + [2109] = { + ["id"] = "explicit.stat_419098854", + ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", + ["type"] = "explicit", + }, + [2110] = { + ["id"] = "explicit.stat_145598447", + ["text"] = "Everlasting Sacrifice", + ["type"] = "explicit", + }, + [2111] = { + ["id"] = "explicit.stat_2879778895", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["type"] = "explicit", + }, + [2112] = { + ["id"] = "explicit.stat_2625554454", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["type"] = "explicit", + }, + [2113] = { + ["id"] = "explicit.stat_1910039112", + ["text"] = "Every 3 seconds during Effect, deal #% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", + ["type"] = "explicit", + }, + [2114] = { + ["id"] = "explicit.stat_3764198549", + ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", + ["type"] = "explicit", + }, + [2115] = { + ["id"] = "explicit.stat_1457411584", + ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", + ["type"] = "explicit", + }, + [2116] = { + ["id"] = "explicit.stat_1895552497", + ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [2117] = { + ["id"] = "explicit.stat_2995914769", + ["text"] = "Every Rage also grants #% increased Armour", + ["type"] = "explicit", + }, + [2118] = { + ["id"] = "explicit.stat_352044736", + ["text"] = "Every Rage also grants #% increased Stun Threshold", + ["type"] = "explicit", + }, + [2119] = { + ["id"] = "explicit.stat_2224139044", + ["text"] = "Every second Slam Skill you use while Shapeshifted is Ancestrally BoostedEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted", + ["type"] = "explicit", + }, + [2120] = { + ["id"] = "explicit.stat_1052498387", + ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", + ["type"] = "explicit", + }, + [2121] = { + ["id"] = "explicit.stat_636464211", + ["text"] = "Excess Life Recovery added as Guard for # seconds", + ["type"] = "explicit", + }, + [2122] = { + ["id"] = "explicit.stat_999436592", + ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", + ["type"] = "explicit", + }, + [2123] = { + ["id"] = "explicit.stat_144770454", + ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", + ["type"] = "explicit", + }, + [2124] = { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in Area have # Remnants", + ["type"] = "explicit", + }, + [2125] = { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in your Maps have # Remnant", + ["type"] = "explicit", + }, + [2126] = { + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", + ["type"] = "explicit", + }, + [2127] = { + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", + ["type"] = "explicit", + }, + [2128] = { + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", + ["type"] = "explicit", + }, + [2129] = { + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", + ["type"] = "explicit", + }, + [2130] = { + ["id"] = "explicit.stat_1228222525", + ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [2131] = { + ["id"] = "explicit.stat_1221641885", + ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", + ["type"] = "explicit", + }, + [2132] = { + ["id"] = "explicit.stat_2949096603", + ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + [2133] = { + ["id"] = "explicit.stat_3247805335", + ["text"] = "Fire Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [2134] = { + ["id"] = "explicit.stat_1540254896", + ["text"] = "Flammability Magnitude is doubled", + ["type"] = "explicit", + }, + [2135] = { + ["id"] = "explicit.stat_265717301", + ["text"] = "Flasks do not recover Life", + ["type"] = "explicit", + }, + [2136] = { + ["id"] = "explicit.stat_2260055669", + ["text"] = "Freezes Enemies that are on Full Life", + ["type"] = "explicit", + }, + [2137] = { + ["id"] = "explicit.stat_3278008231", + ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", + ["type"] = "explicit", + }, + [2138] = { + ["id"] = "explicit.stat_3841984913", + ["text"] = "Gain # Fragile Regrowth each second", + ["type"] = "explicit", + }, + [2139] = { + ["id"] = "explicit.stat_2443032293", + ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", + ["type"] = "explicit", + }, + [2140] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + [2141] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + [2142] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + [2143] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + [2144] = { + ["id"] = "explicit.stat_2258007247", + ["text"] = "Gain # Rage on Hit", + ["type"] = "explicit", + }, + [2145] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + [2146] = { + ["id"] = "explicit.stat_1466716929", + ["text"] = "Gain # Rage when Critically Hit by an Enemy", + ["type"] = "explicit", + }, + [2147] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + [2148] = { + ["id"] = "explicit.stat_555311715", + ["text"] = "Gain # Rage when Hit by an Enemy during effect", + ["type"] = "explicit", + }, + [2149] = { + ["id"] = "explicit.stat_2469544361", + ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + ["type"] = "explicit", + }, + [2150] = { + ["id"] = "explicit.stat_997343726", + ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", + ["type"] = "explicit", + }, + [2151] = { + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [2152] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [2153] = { + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "explicit", + }, + [2154] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [2155] = { + ["id"] = "explicit.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["type"] = "explicit", + }, + [2156] = { + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "explicit", + }, + [2157] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [2158] = { + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "explicit", + }, + [2159] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + [2160] = { + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [2161] = { + ["id"] = "explicit.stat_701564564", + ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [2162] = { + ["id"] = "explicit.stat_3550887155", + ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [2163] = { + ["id"] = "explicit.stat_1546604934", + ["text"] = "Gain #% of Evasion Rating as extra Armour", + ["type"] = "explicit", + }, + [2164] = { + ["id"] = "explicit.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", + ["type"] = "explicit", + }, + [2165] = { + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [2166] = { + ["id"] = "explicit.stat_915546383", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + [2167] = { + ["id"] = "explicit.stat_1228337241", + ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [2168] = { + ["id"] = "explicit.stat_3027830452", + ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [2169] = { + ["id"] = "explicit.stat_796381300", + ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", + ["type"] = "explicit", + }, + [2170] = { + ["id"] = "explicit.stat_2482970488", + ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + ["type"] = "explicit", + }, + [2171] = { + ["id"] = "explicit.stat_1273508088", + ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["type"] = "explicit", + }, + [2172] = { + ["id"] = "explicit.stat_4128965096", + ["text"] = "Gain 1 Explosive Rhythm every # time you use a Grenade SkillRemove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", + ["type"] = "explicit", + }, + [2173] = { + ["id"] = "explicit.stat_3775736880", + ["text"] = "Gain 1 Fear Incarnate when you Cull a target", + ["type"] = "explicit", + }, + [2174] = { + ["id"] = "explicit.stat_343703314", + ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", + ["type"] = "explicit", + }, + [2175] = { + ["id"] = "explicit.stat_3492740640", + ["text"] = "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 secondsLose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", + ["type"] = "explicit", + }, + [2176] = { + ["id"] = "explicit.stat_3170380905", + ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", + ["type"] = "explicit", + }, + [2177] = { + ["id"] = "explicit.stat_3625518318", + ["text"] = "Gain Arcane Surge when a Minion Dies", + ["type"] = "explicit", + }, + [2178] = { + ["id"] = "explicit.stat_1435496528", + ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", + ["type"] = "explicit", + }, + [2179] = { + ["id"] = "explicit.stat_1752419596", + ["text"] = "Gain Deflection Rating equal to #% of Armour", + ["type"] = "explicit", + }, + [2180] = { + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + [2181] = { + ["id"] = "explicit.stat_4010198893", + ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", + ["type"] = "explicit", + }, + [2182] = { + ["id"] = "explicit.stat_469006068", + ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", + ["type"] = "explicit", + }, + [2183] = { + ["id"] = "explicit.stat_3605616594", + ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", + ["type"] = "explicit", + }, + [2184] = { + ["id"] = "explicit.stat_2148576938", + ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", + ["type"] = "explicit", + }, + [2185] = { + ["id"] = "explicit.stat_2163764037", + ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", + ["type"] = "explicit", + }, + [2186] = { + ["id"] = "explicit.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["type"] = "explicit", + }, + [2187] = { + ["id"] = "explicit.stat_2459662130", + ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", + ["type"] = "explicit", + }, + [2188] = { + ["id"] = "explicit.stat_2931872063", + ["text"] = "Gain Volatility on Critical Hit", + ["type"] = "explicit", + }, + [2189] = { + ["id"] = "explicit.stat_1099200124", + ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + ["type"] = "explicit", + }, + [2190] = { + ["id"] = "explicit.stat_2284588585", + ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", + ["type"] = "explicit", + }, + [2191] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [2192] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [2193] = { + ["id"] = "explicit.stat_4187571952", + ["text"] = "Gain no inherent bonus from Intelligence", + ["type"] = "explicit", + }, + [2194] = { + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", + }, + [2195] = { + ["id"] = "explicit.stat_1875158664", + ["text"] = "Giant's Blood", + ["type"] = "explicit", + }, + [2196] = { + ["id"] = "explicit.stat_3831171903|2", + ["text"] = "Giant's Blood", + ["type"] = "explicit", + }, + [2197] = { + ["id"] = "explicit.stat_4266776872", + ["text"] = "Glancing Blows", + ["type"] = "explicit", + }, + [2198] = { + ["id"] = "explicit.stat_3831171903|22", + ["text"] = "Glancing Blows", + ["type"] = "explicit", + }, + [2199] = { + ["id"] = "explicit.stat_3418580811|24", + ["text"] = "Glorifying the defilement of # souls in tribute to AmanamuPassives in radius are Conquered by the AbyssalsDesecration makes this item unstable", + ["type"] = "explicit", + }, + [2200] = { + ["id"] = "explicit.stat_3418580811|25", + ["text"] = "Glorifying the defilement of # souls in tribute to KulemakPassives in radius are Conquered by the AbyssalsDesecration makes this item unstable", + ["type"] = "explicit", + }, + [2201] = { + ["id"] = "explicit.stat_3418580811|26", + ["text"] = "Glorifying the defilement of # souls in tribute to KurgalPassives in radius are Conquered by the AbyssalsDesecration makes this item unstable", + ["type"] = "explicit", + }, + [2202] = { + ["id"] = "explicit.stat_3418580811|27", + ["text"] = "Glorifying the defilement of # souls in tribute to TecrodPassives in radius are Conquered by the AbyssalsDesecration makes this item unstable", + ["type"] = "explicit", + }, + [2203] = { + ["id"] = "explicit.stat_3418580811|28", + ["text"] = "Glorifying the defilement of # souls in tribute to UlamanPassives in radius are Conquered by the AbyssalsDesecration makes this item unstable", + ["type"] = "explicit", + }, + [2204] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + [2205] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + [2206] = { + ["id"] = "explicit.stat_618665892", + ["text"] = "Grants Onslaught during effect", + ["type"] = "explicit", + }, + [2207] = { + ["id"] = "explicit.stat_280890192", + ["text"] = "Grants a Frenzy Charge on use", + ["type"] = "explicit", + }, + [2208] = { + ["id"] = "explicit.stat_2566921799", + ["text"] = "Grants a Power Charge on use", + ["type"] = "explicit", + }, + [2209] = { + ["id"] = "explicit.stat_3742268652", + ["text"] = "Grants effect of Dreaming Gloom Shrine", + ["type"] = "explicit", + }, + [2210] = { + ["id"] = "explicit.stat_234657505", + ["text"] = "Grants effect of Guided Freezing Shrine", + ["type"] = "explicit", + }, + [2211] = { + ["id"] = "explicit.stat_3917429943", + ["text"] = "Grants effect of Guided Meteoric Shrine", + ["type"] = "explicit", + }, + [2212] = { + ["id"] = "explicit.stat_2800412928", + ["text"] = "Grants effect of Guided Tempest Shrine", + ["type"] = "explicit", + }, + [2213] = { + ["id"] = "explicit.stat_1509210032", + ["text"] = "Grants up to your maximum Rage on use", + ["type"] = "explicit", + }, + [2214] = { + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "explicit", + }, + [2215] = { + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "explicit", + }, + [2216] = { + ["id"] = "explicit.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "explicit", + }, + [2217] = { + ["id"] = "explicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "explicit", + }, + [2218] = { + ["id"] = "explicit.stat_1955786041", + ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", + ["type"] = "explicit", + }, + [2219] = { + ["id"] = "explicit.stat_2739148464", + ["text"] = "Has no Attribute Requirements", + ["type"] = "explicit", + }, + [2220] = { + ["id"] = "explicit.stat_3831171903|18", + ["text"] = "Heartstopper", + ["type"] = "explicit", + }, + [2221] = { + ["id"] = "explicit.stat_668076381", + ["text"] = "Heavy Stuns Enemies that are on Full Life", + ["type"] = "explicit", + }, + [2222] = { + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + [2223] = { + ["id"] = "explicit.stat_3787436548", + ["text"] = "Historic", + ["type"] = "explicit", + }, + [2224] = { + ["id"] = "explicit.stat_289086688", + ["text"] = "Hits Break # Armour", + ["type"] = "explicit", + }, + [2225] = { + ["id"] = "explicit.stat_3923947492", + ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", + ["type"] = "explicit", + }, + [2226] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + [2227] = { + ["id"] = "explicit.stat_701923421", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", + ["type"] = "explicit", + }, + [2228] = { + ["id"] = "explicit.stat_3593401321", + ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", + ["type"] = "explicit", + }, + [2229] = { + ["id"] = "explicit.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + [2230] = { + ["id"] = "explicit.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["type"] = "explicit", + }, + [2231] = { + ["id"] = "explicit.stat_1867725690", + ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", + ["type"] = "explicit", + }, + [2232] = { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + [2233] = { + ["id"] = "explicit.stat_1508661598", + ["text"] = "Hits with this Weapon have no Critical Damage Bonus", + ["type"] = "explicit", + }, + [2234] = { + ["id"] = "explicit.stat_2526112819", + ["text"] = "Hits with this Weapon inflict # Gruelling Madness", + ["type"] = "explicit", + }, + [2235] = { + ["id"] = "explicit.stat_2036307261", + ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", + ["type"] = "explicit", + }, + [2236] = { + ["id"] = "explicit.stat_3831171903|27", + ["text"] = "Hollow Palm Technique", + ["type"] = "explicit", + }, + [2237] = { + ["id"] = "explicit.stat_740421489", + ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", + ["type"] = "explicit", + }, + [2238] = { + ["id"] = "explicit.stat_2371108370", + ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", + ["type"] = "explicit", + }, + [2239] = { + ["id"] = "explicit.stat_983582600", + ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", + ["type"] = "explicit", + }, + [2240] = { + ["id"] = "explicit.stat_3314057862", + ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["type"] = "explicit", + }, + [2241] = { + ["id"] = "explicit.stat_4238331303", + ["text"] = "Immobilise enemies at #% buildup instead of 100%", + ["type"] = "explicit", + }, + [2242] = { + ["id"] = "explicit.stat_3881997959", + ["text"] = "Increases Movement Speed by 25%, plus 1% per # Evasion Rating, up to a maximum of 75%Other Modifiers to Movement Speed except for Sprinting do not apply", + ["type"] = "explicit", + }, + [2243] = { + ["id"] = "explicit.stat_1138742368", + ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", + ["type"] = "explicit", + }, + [2244] = { + ["id"] = "explicit.stat_3407300125", + ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [2245] = { + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "explicit", + }, + [2246] = { + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["type"] = "explicit", + }, + [2247] = { + ["id"] = "explicit.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["type"] = "explicit", + }, + [2248] = { + ["id"] = "explicit.stat_3811649872", + ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", + ["type"] = "explicit", + }, + [2249] = { + ["id"] = "explicit.stat_1076031760", + ["text"] = "Infinite Parry Range", + ["type"] = "explicit", + }, + [2250] = { + ["id"] = "explicit.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "explicit", + }, + [2251] = { + ["id"] = "explicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + [2252] = { + ["id"] = "explicit.stat_3314536008", + ["text"] = "Inflict Cold Exposure on Igniting an Enemy", + ["type"] = "explicit", + }, + [2253] = { + ["id"] = "explicit.stat_1695767482", + ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", + ["type"] = "explicit", + }, + [2254] = { + ["id"] = "explicit.stat_533542952", + ["text"] = "Inflict Elemental Exposure on Hit", + ["type"] = "explicit", + }, + [2255] = { + ["id"] = "explicit.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "explicit", + }, + [2256] = { + ["id"] = "explicit.stat_223138829", + ["text"] = "Inflict Elemental Exposure to Enemies 3 metres in front of youfor 4 seconds, every 0.25 seconds while raised", + ["type"] = "explicit", + }, + [2257] = { + ["id"] = "explicit.stat_1538879632", + ["text"] = "Inflict Fire Exposure on Shocking an Enemy", + ["type"] = "explicit", + }, + [2258] = { + ["id"] = "explicit.stat_2665488635", + ["text"] = "Inflict Lightning Exposure on Critical Hit", + ["type"] = "explicit", + }, + [2259] = { + ["id"] = "explicit.stat_359380213", + ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + ["type"] = "explicit", + }, + [2260] = { + ["id"] = "explicit.stat_774222208", + ["text"] = "Inflicts Runefather's Challenge on enemies # metres in front of you when raised, no more than once every 2 seconds", + ["type"] = "explicit", + }, + [2261] = { + ["id"] = "explicit.stat_2918129907", + ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + ["type"] = "explicit", + }, + [2262] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + [2263] = { + ["id"] = "explicit.stat_3703496511", + ["text"] = "Intimidate Enemies on Block for # second", + ["type"] = "explicit", + }, + [2264] = { + ["id"] = "explicit.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", + ["type"] = "explicit", + }, + [2265] = { + ["id"] = "explicit.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "explicit", + }, + [2266] = { + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "explicit", + }, + [2267] = { + ["id"] = "explicit.stat_3528245713", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + [2268] = { + ["id"] = "explicit.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + [2269] = { + ["id"] = "explicit.stat_3831171903|21", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + [2270] = { + ["id"] = "explicit.stat_281311123", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + [2271] = { + ["id"] = "explicit.stat_281201999", + ["text"] = "Knockback direction is reversed", + ["type"] = "explicit", + }, + [2272] = { + ["id"] = "explicit.stat_3739186583", + ["text"] = "Knocks Back Enemies on Hit", + ["type"] = "explicit", + }, + [2273] = { + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + [2274] = { + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + [2275] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", + }, + [2276] = { + ["id"] = "explicit.stat_3389184522", + ["text"] = "Leech from Critical Hits is instant", + ["type"] = "explicit", + }, + [2277] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + [2278] = { + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "explicit", + }, + [2279] = { + ["id"] = "explicit.stat_335699483", + ["text"] = "Leeches #% of maximum Life when you Cast a Spell", + ["type"] = "explicit", + }, + [2280] = { + ["id"] = "explicit.stat_3605721598", + ["text"] = "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", + ["type"] = "explicit", + }, + [2281] = { + ["id"] = "explicit.stat_2437476305", + ["text"] = "Left ring slot: Projectiles from Spells Fork", + ["type"] = "explicit", + }, + [2282] = { + ["id"] = "explicit.stat_3647242059", + ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", + ["type"] = "explicit", + }, + [2283] = { + ["id"] = "explicit.stat_264262054|1", + ["text"] = "Legacy of Amethyst", + ["type"] = "explicit", + }, + [2284] = { + ["id"] = "explicit.stat_264262054|2", + ["text"] = "Legacy of Basalt", + ["type"] = "explicit", + }, + [2285] = { + ["id"] = "explicit.stat_264262054|3", + ["text"] = "Legacy of Bismuth", + ["type"] = "explicit", + }, + [2286] = { + ["id"] = "explicit.stat_264262054|4", + ["text"] = "Legacy of Diamond", + ["type"] = "explicit", + }, + [2287] = { + ["id"] = "explicit.stat_264262054|5", + ["text"] = "Legacy of Gold", + ["type"] = "explicit", + }, + [2288] = { + ["id"] = "explicit.stat_264262054|6", + ["text"] = "Legacy of Granite", + ["type"] = "explicit", + }, + [2289] = { + ["id"] = "explicit.stat_264262054|7", + ["text"] = "Legacy of Jade", + ["type"] = "explicit", + }, + [2290] = { + ["id"] = "explicit.stat_264262054|8", + ["text"] = "Legacy of Quicksilver", + ["type"] = "explicit", + }, + [2291] = { + ["id"] = "explicit.stat_264262054|9", + ["text"] = "Legacy of Ruby", + ["type"] = "explicit", + }, + [2292] = { + ["id"] = "explicit.stat_264262054|10", + ["text"] = "Legacy of Sapphire", + ["type"] = "explicit", + }, + [2293] = { + ["id"] = "explicit.stat_264262054|11", + ["text"] = "Legacy of Silver", + ["type"] = "explicit", + }, + [2294] = { + ["id"] = "explicit.stat_264262054|12", + ["text"] = "Legacy of Stibnite", + ["type"] = "explicit", + }, + [2295] = { + ["id"] = "explicit.stat_264262054|13", + ["text"] = "Legacy of Sulphur", + ["type"] = "explicit", + }, + [2296] = { + ["id"] = "explicit.stat_264262054|14", + ["text"] = "Legacy of Topaz", + ["type"] = "explicit", + }, + [2297] = { + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [2298] = { + ["id"] = "explicit.stat_1200347828", + ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", + ["type"] = "explicit", + }, + [2299] = { + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", + ["type"] = "explicit", + }, + [2300] = { + ["id"] = "explicit.stat_3314050176", + ["text"] = "Life Leech is Converted to Energy Shield Leech", + ["type"] = "explicit", + }, + [2301] = { + ["id"] = "explicit.stat_825825364", + ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", + ["type"] = "explicit", + }, + [2302] = { + ["id"] = "explicit.stat_1092555766", + ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", + ["type"] = "explicit", + }, + [2303] = { + ["id"] = "explicit.stat_3971919056", + ["text"] = "Life Recharges", + ["type"] = "explicit", + }, + [2304] = { + ["id"] = "explicit.stat_2812872407", + ["text"] = "Life Recovery from Flasks also applies to Energy Shield", + ["type"] = "explicit", + }, + [2305] = { + ["id"] = "explicit.stat_1245896889", + ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", + ["type"] = "explicit", + }, + [2306] = { + ["id"] = "explicit.stat_720388959", + ["text"] = "Life Recovery from Flasks is instant", + ["type"] = "explicit", + }, + [2307] = { + ["id"] = "explicit.stat_3947672598", + ["text"] = "Life Recovery from Regeneration is not applied", + ["type"] = "explicit", + }, + [2308] = { + ["id"] = "explicit.stat_451403019", + ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", + ["type"] = "explicit", + }, + [2309] = { + ["id"] = "explicit.stat_632761194", + ["text"] = "Life Regeneration is applied to Energy Shield instead", + ["type"] = "explicit", + }, + [2310] = { + ["id"] = "explicit.stat_932866937", + ["text"] = "Life and Mana Flasks can be equipped in either slot", + ["type"] = "explicit", + }, + [2311] = { + ["id"] = "explicit.stat_1777740627", + ["text"] = "Life that would be lost by taking Damage is instead Reserveduntil you take no Damage to Life for # second", + ["type"] = "explicit", + }, + [2312] = { + ["id"] = "explicit.stat_1011772129", + ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + ["type"] = "explicit", + }, + [2313] = { + ["id"] = "explicit.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + [2314] = { + ["id"] = "explicit.stat_4224965099", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + [2315] = { + ["id"] = "explicit.stat_3246948616", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", + ["type"] = "explicit", + }, + [2316] = { + ["id"] = "explicit.stat_3999959974", + ["text"] = "Lightning Resistance does not affect Lightning damage taken", + ["type"] = "explicit", + }, + [2317] = { + ["id"] = "explicit.stat_3631920880", + ["text"] = "Lightning Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [2318] = { + ["id"] = "explicit.stat_4123841473", + ["text"] = "Lightning Skills Chain # times", + ["type"] = "explicit", + }, + [2319] = { + ["id"] = "explicit.stat_1017648537", + ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", + ["type"] = "explicit", + }, + [2320] = { + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + [2321] = { + ["id"] = "explicit.stat_3831171903|31", + ["text"] = "Lord of the Wilds", + ["type"] = "explicit", + }, + [2322] = { + ["id"] = "explicit.stat_1902409192", + ["text"] = "Lose # Life when you use a Skill", + ["type"] = "explicit", + }, + [2323] = { + ["id"] = "explicit.stat_1147913864", + ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", + ["type"] = "explicit", + }, + [2324] = { + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of maximum Life per second", + ["type"] = "explicit", + }, + [2325] = { + ["id"] = "explicit.stat_1306791873", + ["text"] = "Lose all Fragile Regrowth when Hit", + ["type"] = "explicit", + }, + [2326] = { + ["id"] = "explicit.stat_2135899247", + ["text"] = "Lose all Power Charges on reaching maximum Power Charges", + ["type"] = "explicit", + }, + [2327] = { + ["id"] = "explicit.stat_3851480592", + ["text"] = "Lose all Rage on reaching Maximum Rage", + ["type"] = "explicit", + }, + [2328] = { + ["id"] = "explicit.stat_367897259", + ["text"] = "Lose all Tailwind when Hit", + ["type"] = "explicit", + }, + [2329] = { + ["id"] = "explicit.stat_2895144208", + ["text"] = "Maim on Critical Hit", + ["type"] = "explicit", + }, + [2330] = { + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [2331] = { + ["id"] = "explicit.stat_1839832419", + ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", + ["type"] = "explicit", + }, + [2332] = { + ["id"] = "explicit.stat_4100842845", + ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + ["type"] = "explicit", + }, + [2333] = { + ["id"] = "explicit.stat_3593063598", + ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", + ["type"] = "explicit", + }, + [2334] = { + ["id"] = "explicit.stat_1414945937", + ["text"] = "Manifested Dancing Dervishes die when Rampage ends", + ["type"] = "explicit", + }, + [2335] = { + ["id"] = "explicit.stat_1314787770", + ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", + ["type"] = "explicit", + }, + [2336] = { + ["id"] = "explicit.stat_2588474575", + ["text"] = "Map Bosses are Hunted by Azmeri Spirits", + ["type"] = "explicit", + }, + [2337] = { + ["id"] = "explicit.stat_3860150265", + ["text"] = "Map Bosses grant #% increased Experience", + ["type"] = "explicit", + }, + [2338] = { + ["id"] = "explicit.stat_1458461453", + ["text"] = "Map Bosses have # additional Modifier", + ["type"] = "explicit", + }, + [2339] = { + ["id"] = "explicit.stat_588512487", + ["text"] = "Map has # additional random Modifier", + ["type"] = "explicit", + }, + [2340] = { + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [2341] = { + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + [2342] = { + ["id"] = "explicit.stat_1173537953", + ["text"] = "Maximum # Fragile Regrowth", + ["type"] = "explicit", + }, + [2343] = { + ["id"] = "explicit.stat_1500744699", + ["text"] = "Maximum Chance to Evade is 50%", + ["type"] = "explicit", + }, + [2344] = { + ["id"] = "explicit.stat_2104359366", + ["text"] = "Maximum Energy Shield cannot be Converted", + ["type"] = "explicit", + }, + [2345] = { + ["id"] = "explicit.stat_3960211755", + ["text"] = "Maximum Physical Damage Reduction is 50%", + ["type"] = "explicit", + }, + [2346] = { + ["id"] = "explicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "explicit", + }, + [2347] = { + ["id"] = "explicit.stat_1338406168", + ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", + ["type"] = "explicit", + }, + [2348] = { + ["id"] = "explicit.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [2349] = { + ["id"] = "explicit.stat_2889807051", + ["text"] = "Melee Hits count as Rampage KillsRampage", + ["type"] = "explicit", + }, + [2350] = { + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + [2351] = { + ["id"] = "explicit.stat_173471035", + ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", + ["type"] = "explicit", + }, + [2352] = { + ["id"] = "explicit.stat_3831171903|10", + ["text"] = "Mind Over Matter", + ["type"] = "explicit", + }, + [2353] = { + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "explicit", + }, + [2354] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [2355] = { + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + [2356] = { + ["id"] = "explicit.stat_4046380260", + ["text"] = "Minions cannot Die while affected by a Life Flask", + ["type"] = "explicit", + }, + [2357] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + [2358] = { + ["id"] = "explicit.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "explicit", + }, + [2359] = { + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "explicit", + }, + [2360] = { + ["id"] = "explicit.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [2361] = { + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + [2362] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [2363] = { + ["id"] = "explicit.stat_1486714289", + ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", + ["type"] = "explicit", + }, + [2364] = { + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2365] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [2366] = { + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2367] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [2368] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [2369] = { + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", + ["type"] = "explicit", + }, + [2370] = { + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "explicit", + }, + [2371] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + [2372] = { + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "explicit", + }, + [2373] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + [2374] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2375] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [2376] = { + ["id"] = "explicit.stat_3893509584", + ["text"] = "Minions have Unholy Might", + ["type"] = "explicit", + }, + [2377] = { + ["id"] = "explicit.stat_3045072899", + ["text"] = "Minions' Resistances are equal to yours", + ["type"] = "explicit", + }, + [2378] = { + ["id"] = "explicit.stat_3679696791", + ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + ["type"] = "explicit", + }, + [2379] = { + ["id"] = "explicit.stat_3201111383", + ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + ["type"] = "explicit", + }, + [2380] = { + ["id"] = "explicit.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + [2381] = { + ["id"] = "explicit.stat_1138708335", + ["text"] = "Monster Damage penetrates #% of Cold Resistance", + ["type"] = "explicit", + }, + [2382] = { + ["id"] = "explicit.stat_3588388638", + ["text"] = "Monster Damage penetrates #% of Fire Resistance", + ["type"] = "explicit", + }, + [2383] = { + ["id"] = "explicit.stat_3093465148", + ["text"] = "Monster Damage penetrates #% of Lightning Resistance", + ["type"] = "explicit", + }, + [2384] = { + ["id"] = "explicit.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", + ["type"] = "explicit", + }, + [2385] = { + ["id"] = "explicit.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [2386] = { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", + ["type"] = "explicit", + }, + [2387] = { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", + ["type"] = "explicit", + }, + [2388] = { + ["id"] = "explicit.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "explicit", + }, + [2389] = { + ["id"] = "explicit.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "explicit", + }, + [2390] = { + ["id"] = "explicit.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "explicit", + }, + [2391] = { + ["id"] = "explicit.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "explicit", + }, + [2392] = { + ["id"] = "explicit.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "explicit", + }, + [2393] = { + ["id"] = "explicit.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "explicit", + }, + [2394] = { + ["id"] = "explicit.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "explicit", + }, + [2395] = { + ["id"] = "explicit.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [2396] = { + ["id"] = "explicit.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "explicit", + }, + [2397] = { + ["id"] = "explicit.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + [2398] = { + ["id"] = "explicit.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [2399] = { + ["id"] = "explicit.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "explicit", + }, + [2400] = { + ["id"] = "explicit.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [2401] = { + ["id"] = "explicit.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "explicit", + }, + [2402] = { + ["id"] = "explicit.stat_1708461270", + ["text"] = "Monsters have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2403] = { + ["id"] = "explicit.stat_3906866585", + ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [2404] = { + ["id"] = "explicit.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + [2405] = { + ["id"] = "explicit.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [2406] = { + ["id"] = "explicit.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "explicit", + }, + [2407] = { + ["id"] = "explicit.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "explicit", + }, + [2408] = { + ["id"] = "explicit.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "explicit", + }, + [2409] = { + ["id"] = "explicit.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "explicit", + }, + [2410] = { + ["id"] = "explicit.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "explicit", + }, + [2411] = { + ["id"] = "explicit.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [2412] = { + ["id"] = "explicit.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "explicit", + }, + [2413] = { + ["id"] = "explicit.stat_4112450013", + ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", + ["type"] = "explicit", + }, + [2414] = { + ["id"] = "explicit.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["type"] = "explicit", + }, + [2415] = { + ["id"] = "explicit.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["type"] = "explicit", + }, + [2416] = { + ["id"] = "explicit.stat_3831171903|12", + ["text"] = "Necromantic Talisman", + ["type"] = "explicit", + }, + [2417] = { + ["id"] = "explicit.stat_4163076972", + ["text"] = "No Inherent loss of Rage", + ["type"] = "explicit", + }, + [2418] = { + ["id"] = "explicit.stat_3464644319", + ["text"] = "No Inherent loss of Rage during effect", + ["type"] = "explicit", + }, + [2419] = { + ["id"] = "explicit.stat_585231074", + ["text"] = "No Movement Speed Penalty while Shield is Raised", + ["type"] = "explicit", + }, + [2420] = { + ["id"] = "explicit.stat_1920747151", + ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", + ["type"] = "explicit", + }, + [2421] = { + ["id"] = "explicit.stat_1027889455", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", + ["type"] = "explicit", + }, + [2422] = { + ["id"] = "explicit.stat_3843734793", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", + ["type"] = "explicit", + }, + [2423] = { + ["id"] = "explicit.stat_170426423", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", + ["type"] = "explicit", + }, + [2424] = { + ["id"] = "explicit.stat_1367999357", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", + ["type"] = "explicit", + }, + [2425] = { + ["id"] = "explicit.stat_4245905059", + ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", + ["type"] = "explicit", + }, + [2426] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + [2427] = { + ["id"] = "explicit.stat_3991877392", + ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", + ["type"] = "explicit", + }, + [2428] = { + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + [2429] = { + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + [2430] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + [2431] = { + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", + }, + [2432] = { + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + [2433] = { + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + [2434] = { + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + [2435] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + [2436] = { + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + [2437] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + [2438] = { + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + [2439] = { + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + [2440] = { + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", + }, + [2441] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + [2442] = { + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + [2443] = { + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + [2444] = { + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + [2445] = { + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + [2446] = { + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2447] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [2448] = { + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + [2449] = { + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + [2450] = { + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [2451] = { + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + [2452] = { + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + [2453] = { + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + [2454] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + [2455] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + [2456] = { + ["id"] = "explicit.stat_2717786748", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", + ["type"] = "explicit", + }, + [2457] = { + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + [2458] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + [2459] = { + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + [2460] = { + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + [2461] = { + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + [2462] = { + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", + }, + [2463] = { + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + [2464] = { + ["id"] = "explicit.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [2465] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + [2466] = { + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", + }, + [2467] = { + ["id"] = "explicit.stat_40618390", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", + ["type"] = "explicit", + }, + [2468] = { + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + [2469] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + [2470] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [2471] = { + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + [2472] = { + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + [2473] = { + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + [2474] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + [2475] = { + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + [2476] = { + ["id"] = "explicit.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + [2477] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + [2478] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + [2479] = { + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + [2480] = { + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + [2481] = { + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", + }, + [2482] = { + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", + }, + [2483] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + [2484] = { + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [2485] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + [2486] = { + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + [2487] = { + ["id"] = "explicit.stat_1842384813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", + ["type"] = "explicit", + }, + [2488] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + [2489] = { + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + [2490] = { + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + [2491] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + [2492] = { + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2493] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + [2494] = { + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + [2495] = { + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + [2496] = { + ["id"] = "explicit.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + [2497] = { + ["id"] = "explicit.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + [2498] = { + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + [2499] = { + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [2500] = { + ["id"] = "explicit.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + [2501] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [2502] = { + ["id"] = "explicit.stat_248192092", + ["text"] = "Notable Passive Skills in Radius also grant #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2503] = { + ["id"] = "explicit.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + [2504] = { + ["id"] = "explicit.stat_1731760476", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + [2505] = { + ["id"] = "explicit.stat_1862508014", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + [2506] = { + ["id"] = "explicit.stat_4151994709", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + [2507] = { + ["id"] = "explicit.stat_2217513089", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + [2508] = { + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + [2509] = { + ["id"] = "explicit.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["type"] = "explicit", + }, + [2510] = { + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + [2511] = { + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + [2512] = { + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + [2513] = { + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + [2514] = { + ["id"] = "explicit.stat_2603051299", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [2515] = { + ["id"] = "explicit.stat_833138896", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [2516] = { + ["id"] = "explicit.stat_338620903", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [2517] = { + ["id"] = "explicit.stat_852470634", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [2518] = { + ["id"] = "explicit.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + [2519] = { + ["id"] = "explicit.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [2520] = { + ["id"] = "explicit.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [2521] = { + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + [2522] = { + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2523] = { + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [2524] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [2525] = { + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [2526] = { + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + [2527] = { + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + [2528] = { + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + [2529] = { + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + [2530] = { + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + [2531] = { + ["id"] = "explicit.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [2532] = { + ["id"] = "explicit.stat_3831171903|19", + ["text"] = "Oasis", + ["type"] = "explicit", + }, + [2533] = { + ["id"] = "explicit.stat_3430033313", + ["text"] = "Off-hand Hits inflict Runefather's Challenge", + ["type"] = "explicit", + }, + [2534] = { + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "explicit", + }, + [2535] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + [2536] = { + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + [2537] = { + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "explicit", + }, + [2538] = { + ["id"] = "explicit.stat_3538915253", + ["text"] = "On Hitting an enemy, gains maximum added Lightning damage equal tothe enemy's Power for 20 seconds, up to a total of #", + ["type"] = "explicit", + }, + [2539] = { + ["id"] = "explicit.stat_259470957", + ["text"] = "On-Kill Effects happen twice", + ["type"] = "explicit", + }, + [2540] = { + ["id"] = "explicit.stat_250458861", + ["text"] = "Only Soul Cores can be Socketed in this item", + ["type"] = "explicit", + }, + [2541] = { + ["id"] = "explicit.stat_3642528642|6", + ["text"] = "Only affects Passives in Large Ring", + ["type"] = "explicit", + }, + [2542] = { + ["id"] = "explicit.stat_3642528642|8", + ["text"] = "Only affects Passives in Massive Ring", + ["type"] = "explicit", + }, + [2543] = { + ["id"] = "explicit.stat_3642528642|4", + ["text"] = "Only affects Passives in Medium Ring", + ["type"] = "explicit", + }, + [2544] = { + ["id"] = "explicit.stat_3642528642|5", + ["text"] = "Only affects Passives in Medium-Large Ring", + ["type"] = "explicit", + }, + [2545] = { + ["id"] = "explicit.stat_3642528642|3", + ["text"] = "Only affects Passives in Medium-Small Ring", + ["type"] = "explicit", + }, + [2546] = { + ["id"] = "explicit.stat_3642528642|2", + ["text"] = "Only affects Passives in Small Ring", + ["type"] = "explicit", + }, + [2547] = { + ["id"] = "explicit.stat_3642528642|7", + ["text"] = "Only affects Passives in Very Large Ring", + ["type"] = "explicit", + }, + [2548] = { + ["id"] = "explicit.stat_3642528642|1", + ["text"] = "Only affects Passives in Very Small Ring", + ["type"] = "explicit", + }, + [2549] = { + ["id"] = "explicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "explicit", + }, + [2550] = { + ["id"] = "explicit.stat_3831171903|7", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + [2551] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + [2552] = { + ["id"] = "explicit.stat_3488640354", + ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", + ["type"] = "explicit", + }, + [2553] = { + ["id"] = "explicit.stat_2104138899", + ["text"] = "Parrying applies # Stack of Critical Weakness", + ["type"] = "explicit", + }, + [2554] = { + ["id"] = "explicit.stat_4077035099", + ["text"] = "Passives in Radius can be Allocated without being connected to your tree", + ["type"] = "explicit", + }, + [2555] = { + ["id"] = "explicit.stat_2422708892|45202", + ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2556] = { + ["id"] = "explicit.stat_2422708892|18684", + ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2557] = { + ["id"] = "explicit.stat_2422708892|42680", + ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2558] = { + ["id"] = "explicit.stat_2422708892|51749", + ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2559] = { + ["id"] = "explicit.stat_2422708892|56605", + ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2560] = { + ["id"] = "explicit.stat_2422708892|56349", + ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2561] = { + ["id"] = "explicit.stat_2422708892|33979", + ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2562] = { + ["id"] = "explicit.stat_2422708892|9085", + ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2563] = { + ["id"] = "explicit.stat_2422708892|14226", + ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2564] = { + ["id"] = "explicit.stat_2422708892|57513", + ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2565] = { + ["id"] = "explicit.stat_2422708892|46742", + ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2566] = { + ["id"] = "explicit.stat_2422708892|33404", + ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2567] = { + ["id"] = "explicit.stat_2422708892|32349", + ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2568] = { + ["id"] = "explicit.stat_2422708892|19288", + ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2569] = { + ["id"] = "explicit.stat_2422708892|34497", + ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2570] = { + ["id"] = "explicit.stat_2422708892|64601", + ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2571] = { + ["id"] = "explicit.stat_2422708892|28492", + ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2572] = { + ["id"] = "explicit.stat_2422708892|61942", + ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2573] = { + ["id"] = "explicit.stat_2422708892|45918", + ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2574] = { + ["id"] = "explicit.stat_2422708892|39935", + ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2575] = { + ["id"] = "explicit.stat_2422708892|25100", + ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2576] = { + ["id"] = "explicit.stat_2422708892|55048", + ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2577] = { + ["id"] = "explicit.stat_2422708892|37484", + ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2578] = { + ["id"] = "explicit.stat_2422708892|44017", + ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2579] = { + ["id"] = "explicit.stat_2422708892|25520", + ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2580] = { + ["id"] = "explicit.stat_2422708892|11230", + ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2581] = { + ["id"] = "explicit.stat_2422708892|49547", + ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2582] = { + ["id"] = "explicit.stat_2422708892|41861", + ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2583] = { + ["id"] = "explicit.stat_2422708892|14540", + ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2584] = { + ["id"] = "explicit.stat_2422708892|33369", + ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2585] = { + ["id"] = "explicit.stat_2422708892|47759", + ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2586] = { + ["id"] = "explicit.stat_2422708892|49363", + ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2587] = { + ["id"] = "explicit.stat_2422708892|52", + ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [2588] = { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate enemies on Block", + ["type"] = "explicit", + }, + [2589] = { + ["id"] = "explicit.stat_2041668411", + ["text"] = "Physical Damage is Pinning", + ["type"] = "explicit", + }, + [2590] = { + ["id"] = "explicit.stat_2424163939", + ["text"] = "Physical Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + [2591] = { + ["id"] = "explicit.stat_905072977", + ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + ["type"] = "explicit", + }, + [2592] = { + ["id"] = "explicit.stat_3063814459", + ["text"] = "Pin Enemies which are Primed for Pinning", + ["type"] = "explicit", + }, + [2593] = { + ["id"] = "explicit.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "explicit", + }, + [2594] = { + ["id"] = "explicit.stat_558910024", + ["text"] = "Players are Cursed with Elemental Weakness", + ["type"] = "explicit", + }, + [2595] = { + ["id"] = "explicit.stat_4103440490", + ["text"] = "Players are Cursed with Enfeeble", + ["type"] = "explicit", + }, + [2596] = { + ["id"] = "explicit.stat_2326202293", + ["text"] = "Players are Cursed with Temporal Chains", + ["type"] = "explicit", + }, + [2597] = { + ["id"] = "explicit.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["type"] = "explicit", + }, + [2598] = { + ["id"] = "explicit.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "explicit", + }, + [2599] = { + ["id"] = "explicit.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "explicit", + }, + [2600] = { + ["id"] = "explicit.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "explicit", + }, + [2601] = { + ["id"] = "explicit.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "explicit", + }, + [2602] = { + ["id"] = "explicit.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "explicit", + }, + [2603] = { + ["id"] = "explicit.stat_3510648768", + ["text"] = "Players have #% more Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [2604] = { + ["id"] = "explicit.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2605] = { + ["id"] = "explicit.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["type"] = "explicit", + }, + [2606] = { + ["id"] = "explicit.stat_1310597900", + ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", + ["type"] = "explicit", + }, + [2607] = { + ["id"] = "explicit.stat_3119282240", + ["text"] = "Players have #% more maximum Life and Energy Shield", + ["type"] = "explicit", + }, + [2608] = { + ["id"] = "explicit.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["type"] = "explicit", + }, + [2609] = { + ["id"] = "explicit.stat_3403424702", + ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", + ["type"] = "explicit", + }, + [2610] = { + ["id"] = "explicit.stat_1685559578", + ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", + ["type"] = "explicit", + }, + [2611] = { + ["id"] = "explicit.stat_2839557359", + ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", + ["type"] = "explicit", + }, + [2612] = { + ["id"] = "explicit.stat_300107724", + ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", + ["type"] = "explicit", + }, + [2613] = { + ["id"] = "explicit.stat_3463873033", + ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", + ["type"] = "explicit", + }, + [2614] = { + ["id"] = "explicit.stat_3763491818", + ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", + ["type"] = "explicit", + }, + [2615] = { + ["id"] = "explicit.stat_3181677174", + ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", + ["type"] = "explicit", + }, + [2616] = { + ["id"] = "explicit.stat_3685424517", + ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", + ["type"] = "explicit", + }, + [2617] = { + ["id"] = "explicit.stat_3504441212", + ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", + ["type"] = "explicit", + }, + [2618] = { + ["id"] = "explicit.stat_1810907437", + ["text"] = "Presence Radius is doubled", + ["type"] = "explicit", + }, + [2619] = { + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "explicit", + }, + [2620] = { + ["id"] = "explicit.stat_3831171903|16", + ["text"] = "Primal Hunger", + ["type"] = "explicit", + }, + [2621] = { + ["id"] = "explicit.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["type"] = "explicit", + }, + [2622] = { + ["id"] = "explicit.stat_2214228141", + ["text"] = "Projectiles Pierce all Ignited enemies", + ["type"] = "explicit", + }, + [2623] = { + ["id"] = "explicit.stat_3464380325", + ["text"] = "Projectiles Split towards # targets", + ["type"] = "explicit", + }, + [2624] = { + ["id"] = "explicit.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["type"] = "explicit", + }, + [2625] = { + ["id"] = "explicit.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["type"] = "explicit", + }, + [2626] = { + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", + ["type"] = "explicit", + }, + [2627] = { + ["id"] = "explicit.stat_3826125995", + ["text"] = "Projectiles from Spells cannot Pierce", + ["type"] = "explicit", + }, + [2628] = { + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + [2629] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + [2630] = { + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + [2631] = { + ["id"] = "explicit.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["type"] = "explicit", + }, + [2632] = { + ["id"] = "explicit.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["type"] = "explicit", + }, + [2633] = { + ["id"] = "explicit.stat_1163615092", + ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", + ["type"] = "explicit", + }, + [2634] = { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "explicit", + }, + [2635] = { + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["type"] = "explicit", + }, + [2636] = { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "explicit", + }, + [2637] = { + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["type"] = "explicit", + }, + [2638] = { + ["id"] = "explicit.stat_3198163869", + ["text"] = "Raven-Touched", + ["type"] = "explicit", + }, + [2639] = { + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", + }, + [2640] = { + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", + }, + [2641] = { + ["id"] = "explicit.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", + ["type"] = "explicit", + }, + [2642] = { + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "explicit", + }, + [2643] = { + ["id"] = "explicit.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["type"] = "explicit", + }, + [2644] = { + ["id"] = "explicit.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["type"] = "explicit", + }, + [2645] = { + ["id"] = "explicit.stat_1990472846", + ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", + ["type"] = "explicit", + }, + [2646] = { + ["id"] = "explicit.stat_939832726", + ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", + ["type"] = "explicit", + }, + [2647] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + [2648] = { + ["id"] = "explicit.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["type"] = "explicit", + }, + [2649] = { + ["id"] = "explicit.stat_2535713562", + ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", + ["type"] = "explicit", + }, + [2650] = { + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of maximum Life when you Block", + ["type"] = "explicit", + }, + [2651] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + [2652] = { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + [2653] = { + ["id"] = "explicit.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["type"] = "explicit", + }, + [2654] = { + ["id"] = "explicit.stat_346374719", + ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", + ["type"] = "explicit", + }, + [2655] = { + ["id"] = "explicit.stat_3503117295", + ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + [2656] = { + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + [2657] = { + ["id"] = "explicit.stat_2716923832", + ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", + ["type"] = "explicit", + }, + [2658] = { + ["id"] = "explicit.stat_3891350097", + ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", + ["type"] = "explicit", + }, + [2659] = { + ["id"] = "explicit.stat_1002973905", + ["text"] = "Recover all Mana when Used", + ["type"] = "explicit", + }, + [2660] = { + ["id"] = "explicit.stat_746505085", + ["text"] = "Reflects opposite Ring", + ["type"] = "explicit", + }, + [2661] = { + ["id"] = "explicit.stat_1312381104", + ["text"] = "Regenerate # Life per second for every 10 Intelligence", + ["type"] = "explicit", + }, + [2662] = { + ["id"] = "explicit.stat_3276271783", + ["text"] = "Regenerate # Life per second per Maximum Energy Shield", + ["type"] = "explicit", + }, + [2663] = { + ["id"] = "explicit.stat_2853314994", + ["text"] = "Regenerate # Rage per second", + ["type"] = "explicit", + }, + [2664] = { + ["id"] = "explicit.stat_3161573445", + ["text"] = "Regenerate #% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + ["type"] = "explicit", + }, + [2665] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [2666] = { + ["id"] = "explicit.stat_2201614328", + ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", + ["type"] = "explicit", + }, + [2667] = { + ["id"] = "explicit.stat_302024054", + ["text"] = "Regenerate #% of maximum Life per second while Ignited", + ["type"] = "explicit", + }, + [2668] = { + ["id"] = "explicit.stat_2002533190", + ["text"] = "Regenerate #% of maximum Life per second while Surrounded", + ["type"] = "explicit", + }, + [2669] = { + ["id"] = "explicit.stat_3942946753", + ["text"] = "Regenerate #% of maximum Life per second while on Low Life", + ["type"] = "explicit", + }, + [2670] = { + ["id"] = "explicit.stat_3418580811|22", + ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [2671] = { + ["id"] = "explicit.stat_3418580811|23", + ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [2672] = { + ["id"] = "explicit.stat_3418580811|21", + ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [2673] = { + ["id"] = "explicit.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "explicit", + }, + [2674] = { + ["id"] = "explicit.stat_315717203", + ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", + ["type"] = "explicit", + }, + [2675] = { + ["id"] = "explicit.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "explicit", + }, + [2676] = { + ["id"] = "explicit.stat_1394184789", + ["text"] = "Remove Bleeding when you use a Life Flask", + ["type"] = "explicit", + }, + [2677] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + [2678] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + [2679] = { + ["id"] = "explicit.stat_2306588612", + ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", + ["type"] = "explicit", + }, + [2680] = { + ["id"] = "explicit.stat_2267564181", + ["text"] = "Require # additional enemies to be Surrounded", + ["type"] = "explicit", + }, + [2681] = { + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", + ["type"] = "explicit", + }, + [2682] = { + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [2683] = { + ["id"] = "explicit.stat_3831171903|6", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + [2684] = { + ["id"] = "explicit.stat_3831171903|14", + ["text"] = "Resonance", + ["type"] = "explicit", + }, + [2685] = { + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", + ["type"] = "explicit", + }, + [2686] = { + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", + ["type"] = "explicit", + }, + [2687] = { + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", + ["type"] = "explicit", + }, + [2688] = { + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", + ["type"] = "explicit", + }, + [2689] = { + ["id"] = "explicit.stat_1555918911", + ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["type"] = "explicit", + }, + [2690] = { + ["id"] = "explicit.stat_2933024469", + ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["type"] = "explicit", + }, + [2691] = { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + [2692] = { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + [2693] = { + ["id"] = "explicit.stat_3831171903|29", + ["text"] = "Ritual Cadence", + ["type"] = "explicit", + }, + [2694] = { + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", + ["type"] = "explicit", + }, + [2695] = { + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", + ["type"] = "explicit", + }, + [2696] = { + ["id"] = "explicit.stat_3108672983", + ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", + ["type"] = "explicit", + }, + [2697] = { + ["id"] = "explicit.stat_2816104578", + ["text"] = "Runic Monsters in your Maps are Duplicated", + ["type"] = "explicit", + }, + [2698] = { + ["id"] = "explicit.stat_76982026", + ["text"] = "Sacrifice # Life to not consume the last bolt when firing", + ["type"] = "explicit", + }, + [2699] = { + ["id"] = "explicit.stat_613752285", + ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", + ["type"] = "explicit", + }, + [2700] = { + ["id"] = "explicit.stat_3076483222|49977", + ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2701] = { + ["id"] = "explicit.stat_3076483222|53954", + ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", + ["type"] = "explicit", + }, + [2702] = { + ["id"] = "explicit.stat_3076483222|8084", + ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2703] = { + ["id"] = "explicit.stat_3076483222|30874", + ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2704] = { + ["id"] = "explicit.stat_3076483222|20358", + ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", + ["type"] = "explicit", + }, + [2705] = { + ["id"] = "explicit.stat_3076483222|64921", + ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2706] = { + ["id"] = "explicit.stat_3076483222|38303", + ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", + ["type"] = "explicit", + }, + [2707] = { + ["id"] = "explicit.stat_3076483222|4897", + ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", + ["type"] = "explicit", + }, + [2708] = { + ["id"] = "explicit.stat_3076483222|19846", + ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2709] = { + ["id"] = "explicit.stat_3076483222|32821", + ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", + ["type"] = "explicit", + }, + [2710] = { + ["id"] = "explicit.stat_3076483222|62634", + ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2711] = { + ["id"] = "explicit.stat_3076483222|136", + ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", + ["type"] = "explicit", + }, + [2712] = { + ["id"] = "explicit.stat_3076483222|54496", + ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2713] = { + ["id"] = "explicit.stat_3076483222|61382", + ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2714] = { + ["id"] = "explicit.stat_3076483222|19854", + ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", + ["type"] = "explicit", + }, + [2715] = { + ["id"] = "explicit.stat_3076483222|45026", + ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", + ["type"] = "explicit", + }, + [2716] = { + ["id"] = "explicit.stat_3076483222|56025", + ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2717] = { + ["id"] = "explicit.stat_3076483222|6774", + ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2718] = { + ["id"] = "explicit.stat_3076483222|51981", + ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2719] = { + ["id"] = "explicit.stat_3076483222|42106", + ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2720] = { + ["id"] = "explicit.stat_3831171903|30", + ["text"] = "Scarred Faith", + ["type"] = "explicit", + }, + [2721] = { + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "explicit", + }, + [2722] = { + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "explicit", + }, + [2723] = { + ["id"] = "explicit.stat_2535267021", + ["text"] = "Share Charges with Allies in your Presence", + ["type"] = "explicit", + }, + [2724] = { + ["id"] = "explicit.stat_4256314560", + ["text"] = "Shocks you when you reach maximum Power Charges", + ["type"] = "explicit", + }, + [2725] = { + ["id"] = "explicit.stat_4245256219", + ["text"] = "Skill Gems have no Attribute Requirements", + ["type"] = "explicit", + }, + [2726] = { + ["id"] = "explicit.stat_467146530", + ["text"] = "Skills Cost Divinity instead of Mana or Life", + ["type"] = "explicit", + }, + [2727] = { + ["id"] = "explicit.stat_3605834869", + ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", + ["type"] = "explicit", + }, + [2728] = { + ["id"] = "explicit.stat_2638381947", + ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", + ["type"] = "explicit", + }, + [2729] = { + ["id"] = "explicit.stat_2035336006", + ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [2730] = { + ["id"] = "explicit.stat_4117005593", + ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", + ["type"] = "explicit", + }, + [2731] = { + ["id"] = "explicit.stat_396200591", + ["text"] = "Skills have # seconds to Cooldown", + ["type"] = "explicit", + }, + [2732] = { + ["id"] = "explicit.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "explicit", + }, + [2733] = { + ["id"] = "explicit.stat_3024873336", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", + ["type"] = "explicit", + }, + [2734] = { + ["id"] = "explicit.stat_2150661403", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["type"] = "explicit", + }, + [2735] = { + ["id"] = "explicit.stat_3982604001", + ["text"] = "Skills have #% longer Perfect Timing window during effect", + ["type"] = "explicit", + }, + [2736] = { + ["id"] = "explicit.stat_2942704390", + ["text"] = "Skills have +# to Limit", + ["type"] = "explicit", + }, + [2737] = { + ["id"] = "explicit.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", + ["type"] = "explicit", + }, + [2738] = { + ["id"] = "explicit.stat_1373370443", + ["text"] = "Skills have a #% longer Perfect Timing window", + ["type"] = "explicit", + }, + [2739] = { + ["id"] = "explicit.stat_2838161567", + ["text"] = "Skills reserve 50% less Spirit", + ["type"] = "explicit", + }, + [2740] = { + ["id"] = "explicit.stat_2538411280", + ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", + ["type"] = "explicit", + }, + [2741] = { + ["id"] = "explicit.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["type"] = "explicit", + }, + [2742] = { + ["id"] = "explicit.stat_2480962043", + ["text"] = "Skills which require Glory generate # Glory every 2 seconds", + ["type"] = "explicit", + }, + [2743] = { + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", + ["type"] = "explicit", + }, + [2744] = { + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", + ["type"] = "explicit", + }, + [2745] = { + ["id"] = "explicit.stat_1316656343", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", + ["type"] = "explicit", + }, + [2746] = { + ["id"] = "explicit.stat_1294464552", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", + ["type"] = "explicit", + }, + [2747] = { + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + [2748] = { + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "explicit", + }, + [2749] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [2750] = { + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [2751] = { + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + [2752] = { + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + [2753] = { + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", + }, + [2754] = { + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + [2755] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + [2756] = { + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + [2757] = { + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", + }, + [2758] = { + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + [2759] = { + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + [2760] = { + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + [2761] = { + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + [2762] = { + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + [2763] = { + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "explicit", + }, + [2764] = { + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + [2765] = { + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", + }, + [2766] = { + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + [2767] = { + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + [2768] = { + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + [2769] = { + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + [2770] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [2771] = { + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", + }, + [2772] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [2773] = { + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + [2774] = { + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + [2775] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [2776] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + [2777] = { + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + [2778] = { + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", + }, + [2779] = { + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", + }, + [2780] = { + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + [2781] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + [2782] = { + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [2783] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + [2784] = { + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", + }, + [2785] = { + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + [2786] = { + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + [2787] = { + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", + }, + [2788] = { + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + [2789] = { + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + [2790] = { + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", + }, + [2791] = { + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + [2792] = { + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + [2793] = { + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + [2794] = { + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + [2795] = { + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", + }, + [2796] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + [2797] = { + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", + }, + [2798] = { + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", + }, + [2799] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + [2800] = { + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", + }, + [2801] = { + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + [2802] = { + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + [2803] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + [2804] = { + ["id"] = "explicit.stat_1809641701", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + [2805] = { + ["id"] = "explicit.stat_1247628870", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + [2806] = { + ["id"] = "explicit.stat_860443350", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + [2807] = { + ["id"] = "explicit.stat_3474941090", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + [2808] = { + ["id"] = "explicit.stat_1627878766", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", + ["type"] = "explicit", + }, + [2809] = { + ["id"] = "explicit.stat_2264240911", + ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2810] = { + ["id"] = "explicit.stat_2884937919", + ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", + ["type"] = "explicit", + }, + [2811] = { + ["id"] = "explicit.stat_2948688907", + ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", + ["type"] = "explicit", + }, + [2812] = { + ["id"] = "explicit.stat_3994876825", + ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + [2813] = { + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + [2814] = { + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2815] = { + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + [2816] = { + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + [2817] = { + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", + }, + [2818] = { + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + [2819] = { + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + [2820] = { + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + [2821] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + [2822] = { + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "explicit", + }, + [2823] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + [2824] = { + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [2825] = { + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [2826] = { + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + [2827] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [2828] = { + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + [2829] = { + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + [2830] = { + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [2831] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + [2832] = { + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2833] = { + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [2834] = { + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + [2835] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + [2836] = { + ["id"] = "explicit.stat_1404607671", + ["text"] = "Soul Eater", + ["type"] = "explicit", + }, + [2837] = { + ["id"] = "explicit.stat_4106787208", + ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + ["type"] = "explicit", + }, + [2838] = { + ["id"] = "explicit.stat_2653175601", + ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", + ["type"] = "explicit", + }, + [2839] = { + ["id"] = "explicit.stat_1548338404", + ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", + ["type"] = "explicit", + }, + [2840] = { + ["id"] = "explicit.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [2841] = { + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2842] = { + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + [2843] = { + ["id"] = "explicit.stat_1013492127", + ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", + ["type"] = "explicit", + }, + [2844] = { + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2845] = { + ["id"] = "explicit.stat_2348696937", + ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", + ["type"] = "explicit", + }, + [2846] = { + ["id"] = "explicit.stat_1088082880", + ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + [2847] = { + ["id"] = "explicit.stat_2230687504", + ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + ["type"] = "explicit", + }, + [2848] = { + ["id"] = "explicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "explicit", + }, + [2849] = { + ["id"] = "explicit.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "explicit", + }, + [2850] = { + ["id"] = "explicit.stat_3164544692", + ["text"] = "Take # Chaos damage per second per Endurance Charge", + ["type"] = "explicit", + }, + [2851] = { + ["id"] = "explicit.stat_2518598473", + ["text"] = "Take # Fire Damage when you Ignite an Enemy", + ["type"] = "explicit", + }, + [2852] = { + ["id"] = "explicit.stat_3181887481", + ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", + ["type"] = "explicit", + }, + [2853] = { + ["id"] = "explicit.stat_4294267596", + ["text"] = "Take no Extra Damage from Critical Hits", + ["type"] = "explicit", + }, + [2854] = { + ["id"] = "explicit.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "explicit", + }, + [2855] = { + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "explicit", + }, + [2856] = { + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "explicit", + }, + [2857] = { + ["id"] = "explicit.stat_3783473032", + ["text"] = "The Bodach haunts your Presence", + ["type"] = "explicit", + }, + [2858] = { + ["id"] = "explicit.stat_1010703902", + ["text"] = "The Effect of Blind on you is reversed", + ["type"] = "explicit", + }, + [2859] = { + ["id"] = "explicit.stat_2955966707", + ["text"] = "The Effect of Chill on you is reversed", + ["type"] = "explicit", + }, + [2860] = { + ["id"] = "explicit.stat_2980117882", + ["text"] = "This Flask cannot be Used but applies its Effect constantly", + ["type"] = "explicit", + }, + [2861] = { + ["id"] = "explicit.stat_3384885789", + ["text"] = "This Weapon's Critical Hit Chance is #%", + ["type"] = "explicit", + }, + [2862] = { + ["id"] = "explicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "explicit", + }, + [2863] = { + ["id"] = "explicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "explicit", + }, + [2864] = { + ["id"] = "explicit.stat_1087787187", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", + ["type"] = "explicit", + }, + [2865] = { + ["id"] = "explicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "explicit", + }, + [2866] = { + ["id"] = "explicit.stat_2044810874", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", + ["type"] = "explicit", + }, + [2867] = { + ["id"] = "explicit.stat_150590298", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + ["type"] = "explicit", + }, + [2868] = { + ["id"] = "explicit.stat_3915618954", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + ["type"] = "explicit", + }, + [2869] = { + ["id"] = "explicit.stat_3773763721", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + ["type"] = "explicit", + }, + [2870] = { + ["id"] = "explicit.stat_231726304", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + ["type"] = "explicit", + }, + [2871] = { + ["id"] = "explicit.stat_3414243317", + ["text"] = "Thorns can Retaliate against all Hits", + ["type"] = "explicit", + }, + [2872] = { + ["id"] = "explicit.stat_3371943724", + ["text"] = "Trigger Decompose every 1.2 metres travelled", + ["type"] = "explicit", + }, + [2873] = { + ["id"] = "explicit.stat_826162720", + ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", + ["type"] = "explicit", + }, + [2874] = { + ["id"] = "explicit.stat_704919631", + ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", + ["type"] = "explicit", + }, + [2875] = { + ["id"] = "explicit.stat_811217923", + ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", + ["type"] = "explicit", + }, + [2876] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + [2877] = { + ["id"] = "explicit.stat_4007938693", + ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", + ["type"] = "explicit", + }, + [2878] = { + ["id"] = "explicit.stat_3831171903|25", + ["text"] = "Trusted Kinship", + ["type"] = "explicit", + }, + [2879] = { + ["id"] = "explicit.stat_1176947534", + ["text"] = "Undead Minions have #% reduced Reservation", + ["type"] = "explicit", + }, + [2880] = { + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", + ["type"] = "explicit", + }, + [2881] = { + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["type"] = "explicit", + }, + [2882] = { + ["id"] = "explicit.stat_2433436306", + ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", + ["type"] = "explicit", + }, + [2883] = { + ["id"] = "explicit.stat_3762913035", + ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", + ["type"] = "explicit", + }, + [2884] = { + ["id"] = "explicit.stat_4104094246", + ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", + ["type"] = "explicit", + }, + [2885] = { + ["id"] = "explicit.stat_3831171903|3", + ["text"] = "Unwavering Stance", + ["type"] = "explicit", + }, + [2886] = { + ["id"] = "explicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "explicit", + }, + [2887] = { + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "explicit", + }, + [2888] = { + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "explicit", + }, + [2889] = { + ["id"] = "explicit.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", + ["type"] = "explicit", + }, + [2890] = { + ["id"] = "explicit.stat_3832076641", + ["text"] = "Used when you release a skill with Perfect Timing", + ["type"] = "explicit", + }, + [2891] = { + ["id"] = "explicit.stat_2777675751", + ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", + ["type"] = "explicit", + }, + [2892] = { + ["id"] = "explicit.stat_3831171903|20", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + [2893] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + [2894] = { + ["id"] = "explicit.stat_1132041585", + ["text"] = "Virtuous", + ["type"] = "explicit", + }, + [2895] = { + ["id"] = "explicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "explicit", + }, + [2896] = { + ["id"] = "explicit.stat_11014011", + ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + [2897] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [2898] = { + ["id"] = "explicit.stat_603021645", + ["text"] = "When a Party Member in your Presence Casts a Spell, youSacrifice #% of Mana and they Leech that Mana", + ["type"] = "explicit", + }, + [2899] = { + ["id"] = "explicit.stat_447757144", + ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", + ["type"] = "explicit", + }, + [2900] = { + ["id"] = "explicit.stat_2913235441", + ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + ["type"] = "explicit", + }, + [2901] = { + ["id"] = "explicit.stat_331648983", + ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", + ["type"] = "explicit", + }, + [2902] = { + ["id"] = "explicit.stat_3831171903|11", + ["text"] = "Whispers of Doom", + ["type"] = "explicit", + }, + [2903] = { + ["id"] = "explicit.stat_3831171903|32", + ["text"] = "Wildsurge Incantation", + ["type"] = "explicit", + }, + [2904] = { + ["id"] = "explicit.stat_2626360934", + ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", + ["type"] = "explicit", + }, + [2905] = { + ["id"] = "explicit.stat_279110104", + ["text"] = "Withered does not expire on Enemies Ignited by you", + ["type"] = "explicit", + }, + [2906] = { + ["id"] = "explicit.stat_1910297038", + ["text"] = "Withered you inflict also increases Fire Damage taken", + ["type"] = "explicit", + }, + [2907] = { + ["id"] = "explicit.stat_1354656031", + ["text"] = "Withered you inflict has infinite Duration", + ["type"] = "explicit", + }, + [2908] = { + ["id"] = "explicit.stat_2889272422", + ["text"] = "Wombgifts have #% chance to drop one Level higher", + ["type"] = "explicit", + }, + [2909] = { + ["id"] = "explicit.stat_3429986699", + ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [2910] = { + ["id"] = "explicit.stat_3408222535", + ["text"] = "You and Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + [2911] = { + ["id"] = "explicit.stat_281990982", + ["text"] = "You and Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + [2912] = { + ["id"] = "explicit.stat_36954843", + ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [2913] = { + ["id"] = "explicit.stat_1404134612", + ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [2914] = { + ["id"] = "explicit.stat_3774577097", + ["text"] = "You are Blind", + ["type"] = "explicit", + }, + [2915] = { + ["id"] = "explicit.stat_356835700", + ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", + ["type"] = "explicit", + }, + [2916] = { + ["id"] = "explicit.stat_664024640", + ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", + ["type"] = "explicit", + }, + [2917] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + [2918] = { + ["id"] = "explicit.stat_603573028", + ["text"] = "You can have any number of Companions of different types", + ["type"] = "explicit", + }, + [2919] = { + ["id"] = "explicit.stat_1888024332", + ["text"] = "You can have two Companions of different types", + ["type"] = "explicit", + }, + [2920] = { + ["id"] = "explicit.stat_3598729471", + ["text"] = "You can only Socket Emerald Jewels in this item", + ["type"] = "explicit", + }, + [2921] = { + ["id"] = "explicit.stat_4031148736", + ["text"] = "You can only Socket Ruby Jewels in this item", + ["type"] = "explicit", + }, + [2922] = { + ["id"] = "explicit.stat_21302430", + ["text"] = "You can only Socket Sapphire Jewels in this item", + ["type"] = "explicit", + }, + [2923] = { + ["id"] = "explicit.stat_3635316831", + ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", + ["type"] = "explicit", + }, + [2924] = { + ["id"] = "explicit.stat_1536107934", + ["text"] = "You cannot Sprint", + ["type"] = "explicit", + }, + [2925] = { + ["id"] = "explicit.stat_2306924373", + ["text"] = "You cannot be Chilled for # second after being Chilled", + ["type"] = "explicit", + }, + [2926] = { + ["id"] = "explicit.stat_2996245527", + ["text"] = "You cannot be Chilled or Frozen", + ["type"] = "explicit", + }, + [2927] = { + ["id"] = "explicit.stat_3612464552", + ["text"] = "You cannot be Frozen for # second after being Frozen", + ["type"] = "explicit", + }, + [2928] = { + ["id"] = "explicit.stat_947072590", + ["text"] = "You cannot be Ignited for # second after being Ignited", + ["type"] = "explicit", + }, + [2929] = { + ["id"] = "explicit.stat_215346464", + ["text"] = "You cannot be Shocked for # second after being Shocked", + ["type"] = "explicit", + }, + [2930] = { + ["id"] = "explicit.stat_423304126", + ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", + ["type"] = "explicit", + }, + [2931] = { + ["id"] = "explicit.stat_3154256486", + ["text"] = "You count as on Low Life while at #% of maximum Mana or below", + ["type"] = "explicit", + }, + [2932] = { + ["id"] = "explicit.stat_1143240184", + ["text"] = "You count as on Low Mana while at #% of maximum Life or below", + ["type"] = "explicit", + }, + [2933] = { + ["id"] = "explicit.stat_1195849808", + ["text"] = "You gain Onslaught for # seconds on Kill", + ["type"] = "explicit", + }, + [2934] = { + ["id"] = "explicit.stat_1736538865", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + [2935] = { + ["id"] = "explicit.stat_3007552094", + ["text"] = "You have Unholy Might", + ["type"] = "explicit", + }, + [2936] = { + ["id"] = "explicit.stat_2592455368", + ["text"] = "You have a Smoke Cloud around you while stationary", + ["type"] = "explicit", + }, + [2937] = { + ["id"] = "explicit.stat_3070990531", + ["text"] = "You have no Accuracy Penalty at Distance", + ["type"] = "explicit", + }, + [2938] = { + ["id"] = "explicit.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", + ["type"] = "explicit", + }, + [2939] = { + ["id"] = "explicit.stat_1776968075", + ["text"] = "You have no Elemental Resistances", + ["type"] = "explicit", + }, + [2940] = { + ["id"] = "explicit.stat_854225133", + ["text"] = "You have no Life Regeneration", + ["type"] = "explicit", + }, + [2941] = { + ["id"] = "explicit.stat_3148264775", + ["text"] = "You have no Spirit", + ["type"] = "explicit", + }, + [2942] = { + ["id"] = "explicit.stat_2350411833", + ["text"] = "You lose #% of maximum Energy Shield per second", + ["type"] = "explicit", + }, + [2943] = { + ["id"] = "explicit.stat_2905515354", + ["text"] = "You take #% of damage from Blocked Hits", + ["type"] = "explicit", + }, + [2944] = { + ["id"] = "explicit.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["type"] = "explicit", + }, + [2945] = { + ["id"] = "explicit.stat_2022332470", + ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", + ["type"] = "explicit", + }, + [2946] = { + ["id"] = "explicit.stat_2516303866", + ["text"] = "Your Critical Damage Bonus is 250%", + ["type"] = "explicit", + }, + [2947] = { + ["id"] = "explicit.stat_4159551976", + ["text"] = "Your Critical Hit Chance cannot be Rerolled", + ["type"] = "explicit", + }, + [2948] = { + ["id"] = "explicit.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", + ["type"] = "explicit", + }, + [2949] = { + ["id"] = "explicit.stat_2890792988", + ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + ["type"] = "explicit", + }, + [2950] = { + ["id"] = "explicit.stat_2397460217", + ["text"] = "Your Life Flask also applies to your Minions", + ["type"] = "explicit", + }, + [2951] = { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Your Maps are inhabited by # additional Rogue Exile", + ["type"] = "explicit", + }, + [2952] = { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", + ["type"] = "explicit", + }, + [2953] = { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "explicit", + }, + [2954] = { + ["id"] = "explicit.stat_395808938", + ["text"] = "Your Maps contain an additional Essence", + ["type"] = "explicit", + }, + [2955] = { + ["id"] = "explicit.stat_231864447", + ["text"] = "Your Maps contain an additional Rare Chest", + ["type"] = "explicit", + }, + [2956] = { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", + ["type"] = "explicit", + }, + [2957] = { + ["id"] = "explicit.stat_588512487", + ["text"] = "Your Maps have # additional random Modifier", + ["type"] = "explicit", + }, + [2958] = { + ["id"] = "explicit.stat_2571125745", + ["text"] = "Your Maps have #% chance to contain a Shrine", + ["type"] = "explicit", + }, + [2959] = { + ["id"] = "explicit.stat_2388936716", + ["text"] = "Your Maps have #% chance to contain a Strongbox", + ["type"] = "explicit", + }, + [2960] = { + ["id"] = "explicit.stat_4098286334", + ["text"] = "Your Maps have #% chance to contain an Essence", + ["type"] = "explicit", + }, + [2961] = { + ["id"] = "explicit.stat_3049505189", + ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", + ["type"] = "explicit", + }, + [2962] = { + ["id"] = "explicit.stat_2440265466", + ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", + ["type"] = "explicit", + }, + [2963] = { + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "explicit", + }, + [2964] = { + ["id"] = "explicit.stat_3091132047", + ["text"] = "Your base Energy Shield Recharge Delay is # second", + ["type"] = "explicit", + }, + [2965] = { + ["id"] = "explicit.stat_758226825", + ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", + ["type"] = "explicit", + }, + [2966] = { + ["id"] = "explicit.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["type"] = "explicit", + }, + [2967] = { + ["id"] = "explicit.stat_50721145", + ["text"] = "Your speed is unaffected by Slows", + ["type"] = "explicit", + }, + [2968] = { + ["id"] = "explicit.stat_1315418254", + ["text"] = "Zealot's Oath", + ["type"] = "explicit", + }, + [2969] = { + ["id"] = "explicit.stat_3831171903|33", + ["text"] = "Zealot's Oath", + ["type"] = "explicit", + }, + }, + ["id"] = "explicit", + ["label"] = "Explicit", + }, + [3] = { + ["entries"] = { + [1] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + [2] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + [3] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + [4] = { + ["id"] = "implicit.stat_2264295449", + ["text"] = "# metres to Melee Strike Range", + ["type"] = "implicit", + }, + [5] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + [6] = { + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", + }, + [7] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + [8] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + [9] = { + ["id"] = "implicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", + ["type"] = "implicit", + }, + [10] = { + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", + }, + [11] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + [12] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + [13] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + [14] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + [15] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + [16] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + [17] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + [18] = { + ["id"] = "implicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + [19] = { + ["id"] = "implicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + [20] = { + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", + }, + [21] = { + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "implicit", + }, + [22] = { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + [23] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + [24] = { + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + [25] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + [26] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + [27] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + [28] = { + ["id"] = "implicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "implicit", + }, + [29] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + [30] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + [31] = { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + [32] = { + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + [33] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + [34] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + [35] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + [36] = { + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", + }, + [37] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + [38] = { + ["id"] = "implicit.stat_3691641145", + ["text"] = "#% increased Damage taken", + ["type"] = "implicit", + }, + [39] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + [40] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + [41] = { + ["id"] = "implicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", + ["type"] = "implicit", + }, + [42] = { + ["id"] = "implicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", + ["type"] = "implicit", + }, + [43] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + [44] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + [45] = { + ["id"] = "implicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "implicit", + }, + [46] = { + ["id"] = "implicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "implicit", + }, + [47] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + [48] = { + ["id"] = "implicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "implicit", + }, + [49] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + [50] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + [51] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + [52] = { + ["id"] = "implicit.stat_4169430079", + ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + [53] = { + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", + }, + [54] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + [55] = { + ["id"] = "implicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "implicit", + }, + [56] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + [57] = { + ["id"] = "implicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", + ["type"] = "implicit", + }, + [58] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + [59] = { + ["id"] = "implicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "implicit", + }, + [60] = { + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", + }, + [61] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + [62] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + [63] = { + ["id"] = "implicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "implicit", + }, + [64] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + [65] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + [66] = { + ["id"] = "implicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "implicit", + }, + [67] = { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Expedition Explosives", + ["type"] = "implicit", + }, + [68] = { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Explosives", + ["type"] = "implicit", + }, + [69] = { + ["id"] = "implicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + [70] = { + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "implicit", + }, + [71] = { + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["type"] = "implicit", + }, + [72] = { + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", + }, + [73] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + [74] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + [75] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + [76] = { + ["id"] = "implicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + [77] = { + ["id"] = "implicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "implicit", + }, + [78] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + [79] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + [80] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + [81] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + [82] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + [83] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + [84] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, + [85] = { + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + [86] = { + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", + }, + [87] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", + }, + [88] = { + ["id"] = "implicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "implicit", + }, + [89] = { + ["id"] = "implicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "implicit", + }, + [90] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + [91] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "implicit", + }, + [92] = { + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "implicit", + }, + [93] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", + }, + [94] = { + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", + }, + [95] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "implicit", + }, + [96] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + [97] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "implicit", + }, + [98] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + [99] = { + ["id"] = "implicit.stat_2369421690", + ["text"] = "Adds Abysses to a Map # use remaining", + ["type"] = "implicit", + }, + [100] = { + ["id"] = "implicit.stat_4041853756", + ["text"] = "Adds Irradiated to a Map # use remaining", + ["type"] = "implicit", + }, + [101] = { + ["id"] = "implicit.stat_3166002380", + ["text"] = "Adds Ritual Altars to a Map # use remaining", + ["type"] = "implicit", + }, + [102] = { + ["id"] = "implicit.stat_3035440454", + ["text"] = "Adds Vaal Beacons to a Map # use remaining", + ["type"] = "implicit", + }, + [103] = { + ["id"] = "implicit.stat_1714888636", + ["text"] = "Adds a Kalguuran Expedition to a Map # use remaining", + ["type"] = "implicit", + }, + [104] = { + ["id"] = "implicit.stat_3879011313", + ["text"] = "Adds a Mirror of Delirium to a Map # use remaining", + ["type"] = "implicit", + }, + [105] = { + ["id"] = "implicit.stat_2219129443", + ["text"] = "Adds an Otherworldy Breach to a Map # use remaining", + ["type"] = "implicit", + }, + [106] = { + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", + }, + [107] = { + ["id"] = "implicit.stat_4160330571", + ["text"] = "Area contains # additional Chest Marker", + ["type"] = "implicit", + }, + [108] = { + ["id"] = "implicit.stat_1915989164", + ["text"] = "Area contains #% increased number of Monster Markers", + ["type"] = "implicit", + }, + [109] = { + ["id"] = "implicit.stat_2991413918", + ["text"] = "Area contains #% increased number of Remnants", + ["type"] = "implicit", + }, + [110] = { + ["id"] = "implicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + [111] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + [112] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + [113] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + [114] = { + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + [115] = { + ["id"] = "implicit.stat_4270348114", + ["text"] = "Breaks # Armour on Critical Hit", + ["type"] = "implicit", + }, + [116] = { + ["id"] = "implicit.stat_129891052", + ["text"] = "Can roll Ring Modifiers", + ["type"] = "implicit", + }, + [117] = { + ["id"] = "implicit.stat_3663551379", + ["text"] = "Cannot load or fire Ammunition", + ["type"] = "implicit", + }, + [118] = { + ["id"] = "implicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", + ["type"] = "implicit", + }, + [119] = { + ["id"] = "implicit.stat_254952842", + ["text"] = "Catalysts can be applied to this item", + ["type"] = "implicit", + }, + [120] = { + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", + }, + [121] = { + ["id"] = "implicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["type"] = "implicit", + }, + [122] = { + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + [123] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + [124] = { + ["id"] = "implicit.stat_1574531783", + ["text"] = "Culling Strike (Local)", + ["type"] = "implicit", + }, + [125] = { + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", + }, + [126] = { + ["id"] = "implicit.stat_3376302538", + ["text"] = "Empowers the Map Boss of a Map # use remaining", + ["type"] = "implicit", + }, + [127] = { + ["id"] = "implicit.stat_3239978999", + ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", + ["type"] = "implicit", + }, + [128] = { + ["id"] = "implicit.stat_4160330571", + ["text"] = "Expedition encounters in your Maps contain # additional Chest Marker", + ["type"] = "implicit", + }, + [129] = { + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + [130] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + [131] = { + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "implicit", + }, + [132] = { + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "implicit", + }, + [133] = { + ["id"] = "implicit.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "implicit", + }, + [134] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + [135] = { + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + [136] = { + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", + }, + [137] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + [138] = { + ["id"] = "implicit.stat_1050883682", + ["text"] = "Has no Accuracy Penalty from Range", + ["type"] = "implicit", + }, + [139] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + [140] = { + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", + }, + [141] = { + ["id"] = "implicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "implicit", + }, + [142] = { + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", + }, + [143] = { + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "implicit", + }, + [144] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + [145] = { + ["id"] = "implicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "implicit", + }, + [146] = { + ["id"] = "implicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "implicit", + }, + [147] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", + }, + [148] = { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + [149] = { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + [150] = { + ["id"] = "implicit.stat_2728425538", + ["text"] = "Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost", + ["type"] = "implicit", + }, + [151] = { + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + [152] = { + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "implicit", + }, + [153] = { + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "implicit", + }, + [154] = { + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "implicit", + }, + [155] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + [156] = { + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + [157] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + [158] = { + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + [159] = { + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", + }, + [160] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + [161] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + [162] = { + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + [163] = { + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + [164] = { + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + [165] = { + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + [166] = { + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + [167] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + [168] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + }, + ["id"] = "implicit", + ["label"] = "Implicit", + }, + [4] = { + ["entries"] = { + [1] = { + ["id"] = "fractured.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "fractured", + }, + [2] = { + ["id"] = "fractured.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "fractured", + }, + [3] = { + ["id"] = "fractured.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "fractured", + }, + [4] = { + ["id"] = "fractured.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "fractured", + }, + [5] = { + ["id"] = "fractured.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "fractured", + }, + [6] = { + ["id"] = "fractured.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "fractured", + }, + [7] = { + ["id"] = "fractured.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "fractured", + }, + [8] = { + ["id"] = "fractured.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "fractured", + }, + [9] = { + ["id"] = "fractured.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "fractured", + }, + [10] = { + ["id"] = "fractured.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "fractured", + }, + [11] = { + ["id"] = "fractured.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "fractured", + }, + [12] = { + ["id"] = "fractured.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "fractured", + }, + [13] = { + ["id"] = "fractured.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "fractured", + }, + [14] = { + ["id"] = "fractured.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "fractured", + }, + [15] = { + ["id"] = "fractured.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "fractured", + }, + [16] = { + ["id"] = "fractured.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "fractured", + }, + [17] = { + ["id"] = "fractured.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "fractured", + }, + [18] = { + ["id"] = "fractured.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "fractured", + }, + [19] = { + ["id"] = "fractured.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "fractured", + }, + [20] = { + ["id"] = "fractured.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "fractured", + }, + [21] = { + ["id"] = "fractured.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "fractured", + }, + [22] = { + ["id"] = "fractured.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "fractured", + }, + [23] = { + ["id"] = "fractured.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "fractured", + }, + [24] = { + ["id"] = "fractured.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "fractured", + }, + [25] = { + ["id"] = "fractured.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "fractured", + }, + [26] = { + ["id"] = "fractured.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "fractured", + }, + [27] = { + ["id"] = "fractured.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "fractured", + }, + [28] = { + ["id"] = "fractured.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "fractured", + }, + [29] = { + ["id"] = "fractured.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "fractured", + }, + [30] = { + ["id"] = "fractured.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "fractured", + }, + [31] = { + ["id"] = "fractured.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "fractured", + }, + [32] = { + ["id"] = "fractured.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + [33] = { + ["id"] = "fractured.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + [34] = { + ["id"] = "fractured.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "fractured", + }, + [35] = { + ["id"] = "fractured.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "fractured", + }, + [36] = { + ["id"] = "fractured.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "fractured", + }, + [37] = { + ["id"] = "fractured.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "fractured", + }, + [38] = { + ["id"] = "fractured.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [39] = { + ["id"] = "fractured.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "fractured", + }, + [40] = { + ["id"] = "fractured.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "fractured", + }, + [41] = { + ["id"] = "fractured.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "fractured", + }, + [42] = { + ["id"] = "fractured.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "fractured", + }, + [43] = { + ["id"] = "fractured.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "fractured", + }, + [44] = { + ["id"] = "fractured.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "fractured", + }, + [45] = { + ["id"] = "fractured.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "fractured", + }, + [46] = { + ["id"] = "fractured.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "fractured", + }, + [47] = { + ["id"] = "fractured.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "fractured", + }, + [48] = { + ["id"] = "fractured.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "fractured", + }, + [49] = { + ["id"] = "fractured.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "fractured", + }, + [50] = { + ["id"] = "fractured.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "fractured", + }, + [51] = { + ["id"] = "fractured.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "fractured", + }, + [52] = { + ["id"] = "fractured.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "fractured", + }, + [53] = { + ["id"] = "fractured.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "fractured", + }, + [54] = { + ["id"] = "fractured.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "fractured", + }, + [55] = { + ["id"] = "fractured.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "fractured", + }, + [56] = { + ["id"] = "fractured.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "fractured", + }, + [57] = { + ["id"] = "fractured.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "fractured", + }, + [58] = { + ["id"] = "fractured.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "fractured", + }, + [59] = { + ["id"] = "fractured.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "fractured", + }, + [60] = { + ["id"] = "fractured.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "fractured", + }, + [61] = { + ["id"] = "fractured.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "fractured", + }, + [62] = { + ["id"] = "fractured.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "fractured", + }, + [63] = { + ["id"] = "fractured.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "fractured", + }, + [64] = { + ["id"] = "fractured.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "fractured", + }, + [65] = { + ["id"] = "fractured.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "fractured", + }, + [66] = { + ["id"] = "fractured.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "fractured", + }, + [67] = { + ["id"] = "fractured.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "fractured", + }, + [68] = { + ["id"] = "fractured.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "fractured", + }, + [69] = { + ["id"] = "fractured.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "fractured", + }, + [70] = { + ["id"] = "fractured.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [71] = { + ["id"] = "fractured.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [72] = { + ["id"] = "fractured.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "fractured", + }, + [73] = { + ["id"] = "fractured.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "fractured", + }, + [74] = { + ["id"] = "fractured.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [75] = { + ["id"] = "fractured.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "fractured", + }, + [76] = { + ["id"] = "fractured.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "fractured", + }, + [77] = { + ["id"] = "fractured.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "fractured", + }, + [78] = { + ["id"] = "fractured.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "fractured", + }, + [79] = { + ["id"] = "fractured.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "fractured", + }, + [80] = { + ["id"] = "fractured.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "fractured", + }, + [81] = { + ["id"] = "fractured.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "fractured", + }, + [82] = { + ["id"] = "fractured.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "fractured", + }, + [83] = { + ["id"] = "fractured.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "fractured", + }, + [84] = { + ["id"] = "fractured.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "fractured", + }, + [85] = { + ["id"] = "fractured.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "fractured", + }, + [86] = { + ["id"] = "fractured.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "fractured", + }, + [87] = { + ["id"] = "fractured.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "fractured", + }, + [88] = { + ["id"] = "fractured.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "fractured", + }, + [89] = { + ["id"] = "fractured.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "fractured", + }, + [90] = { + ["id"] = "fractured.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "fractured", + }, + [91] = { + ["id"] = "fractured.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "fractured", + }, + [92] = { + ["id"] = "fractured.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "fractured", + }, + [93] = { + ["id"] = "fractured.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "fractured", + }, + [94] = { + ["id"] = "fractured.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "fractured", + }, + [95] = { + ["id"] = "fractured.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "fractured", + }, + [96] = { + ["id"] = "fractured.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "fractured", + }, + [97] = { + ["id"] = "fractured.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "fractured", + }, + [98] = { + ["id"] = "fractured.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "fractured", + }, + [99] = { + ["id"] = "fractured.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "fractured", + }, + [100] = { + ["id"] = "fractured.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "fractured", + }, + [101] = { + ["id"] = "fractured.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "fractured", + }, + [102] = { + ["id"] = "fractured.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "fractured", + }, + [103] = { + ["id"] = "fractured.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "fractured", + }, + [104] = { + ["id"] = "fractured.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "fractured", + }, + [105] = { + ["id"] = "fractured.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "fractured", + }, + [106] = { + ["id"] = "fractured.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "fractured", + }, + [107] = { + ["id"] = "fractured.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "fractured", + }, + [108] = { + ["id"] = "fractured.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "fractured", + }, + [109] = { + ["id"] = "fractured.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "fractured", + }, + [110] = { + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain", + ["type"] = "fractured", + }, + [111] = { + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", + ["type"] = "fractured", + }, + [112] = { + ["id"] = "fractured.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "fractured", + }, + [113] = { + ["id"] = "fractured.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "fractured", + }, + [114] = { + ["id"] = "fractured.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [115] = { + ["id"] = "fractured.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "fractured", + }, + [116] = { + ["id"] = "fractured.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "fractured", + }, + [117] = { + ["id"] = "fractured.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "fractured", + }, + [118] = { + ["id"] = "fractured.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "fractured", + }, + [119] = { + ["id"] = "fractured.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "fractured", + }, + [120] = { + ["id"] = "fractured.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "fractured", + }, + [121] = { + ["id"] = "fractured.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "fractured", + }, + [122] = { + ["id"] = "fractured.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "fractured", + }, + [123] = { + ["id"] = "fractured.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "fractured", + }, + [124] = { + ["id"] = "fractured.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "fractured", + }, + [125] = { + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["type"] = "fractured", + }, + [126] = { + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["type"] = "fractured", + }, + [127] = { + ["id"] = "fractured.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "fractured", + }, + [128] = { + ["id"] = "fractured.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "fractured", + }, + [129] = { + ["id"] = "fractured.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "fractured", + }, + [130] = { + ["id"] = "fractured.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "fractured", + }, + [131] = { + ["id"] = "fractured.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "fractured", + }, + [132] = { + ["id"] = "fractured.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "fractured", + }, + [133] = { + ["id"] = "fractured.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "fractured", + }, + [134] = { + ["id"] = "fractured.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "fractured", + }, + [135] = { + ["id"] = "fractured.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "fractured", + }, + [136] = { + ["id"] = "fractured.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "fractured", + }, + [137] = { + ["id"] = "fractured.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", + ["type"] = "fractured", + }, + [138] = { + ["id"] = "fractured.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "fractured", + }, + [139] = { + ["id"] = "fractured.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "fractured", + }, + [140] = { + ["id"] = "fractured.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "fractured", + }, + [141] = { + ["id"] = "fractured.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "fractured", + }, + [142] = { + ["id"] = "fractured.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "fractured", + }, + [143] = { + ["id"] = "fractured.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "fractured", + }, + [144] = { + ["id"] = "fractured.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "fractured", + }, + [145] = { + ["id"] = "fractured.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "fractured", + }, + [146] = { + ["id"] = "fractured.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + [147] = { + ["id"] = "fractured.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "fractured", + }, + [148] = { + ["id"] = "fractured.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "fractured", + }, + [149] = { + ["id"] = "fractured.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "fractured", + }, + [150] = { + ["id"] = "fractured.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "fractured", + }, + [151] = { + ["id"] = "fractured.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "fractured", + }, + [152] = { + ["id"] = "fractured.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "fractured", + }, + [153] = { + ["id"] = "fractured.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "fractured", + }, + [154] = { + ["id"] = "fractured.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "fractured", + }, + [155] = { + ["id"] = "fractured.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "fractured", + }, + [156] = { + ["id"] = "fractured.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "fractured", + }, + [157] = { + ["id"] = "fractured.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "fractured", + }, + [158] = { + ["id"] = "fractured.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "fractured", + }, + [159] = { + ["id"] = "fractured.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "fractured", + }, + [160] = { + ["id"] = "fractured.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "fractured", + }, + [161] = { + ["id"] = "fractured.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "fractured", + }, + [162] = { + ["id"] = "fractured.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "fractured", + }, + [163] = { + ["id"] = "fractured.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "fractured", + }, + [164] = { + ["id"] = "fractured.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "fractured", + }, + [165] = { + ["id"] = "fractured.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "fractured", + }, + [166] = { + ["id"] = "fractured.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "fractured", + }, + [167] = { + ["id"] = "fractured.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "fractured", + }, + [168] = { + ["id"] = "fractured.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "fractured", + }, + [169] = { + ["id"] = "fractured.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "fractured", + }, + [170] = { + ["id"] = "fractured.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [171] = { + ["id"] = "fractured.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "fractured", + }, + [172] = { + ["id"] = "fractured.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "fractured", + }, + [173] = { + ["id"] = "fractured.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "fractured", + }, + [174] = { + ["id"] = "fractured.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "fractured", + }, + [175] = { + ["id"] = "fractured.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "fractured", + }, + [176] = { + ["id"] = "fractured.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "fractured", + }, + [177] = { + ["id"] = "fractured.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "fractured", + }, + [178] = { + ["id"] = "fractured.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "fractured", + }, + [179] = { + ["id"] = "fractured.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "fractured", + }, + [180] = { + ["id"] = "fractured.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "fractured", + }, + [181] = { + ["id"] = "fractured.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "fractured", + }, + [182] = { + ["id"] = "fractured.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "fractured", + }, + [183] = { + ["id"] = "fractured.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "fractured", + }, + [184] = { + ["id"] = "fractured.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "fractured", + }, + [185] = { + ["id"] = "fractured.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "fractured", + }, + [186] = { + ["id"] = "fractured.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "fractured", + }, + [187] = { + ["id"] = "fractured.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "fractured", + }, + [188] = { + ["id"] = "fractured.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [189] = { + ["id"] = "fractured.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "fractured", + }, + [190] = { + ["id"] = "fractured.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "fractured", + }, + [191] = { + ["id"] = "fractured.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "fractured", + }, + [192] = { + ["id"] = "fractured.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "fractured", + }, + [193] = { + ["id"] = "fractured.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "fractured", + }, + [194] = { + ["id"] = "fractured.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "fractured", + }, + [195] = { + ["id"] = "fractured.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "fractured", + }, + [196] = { + ["id"] = "fractured.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "fractured", + }, + [197] = { + ["id"] = "fractured.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "fractured", + }, + [198] = { + ["id"] = "fractured.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "fractured", + }, + [199] = { + ["id"] = "fractured.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "fractured", + }, + [200] = { + ["id"] = "fractured.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "fractured", + }, + [201] = { + ["id"] = "fractured.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "fractured", + }, + [202] = { + ["id"] = "fractured.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "fractured", + }, + [203] = { + ["id"] = "fractured.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "fractured", + }, + [204] = { + ["id"] = "fractured.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [205] = { + ["id"] = "fractured.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "fractured", + }, + [206] = { + ["id"] = "fractured.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [207] = { + ["id"] = "fractured.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "fractured", + }, + [208] = { + ["id"] = "fractured.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [209] = { + ["id"] = "fractured.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [210] = { + ["id"] = "fractured.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "fractured", + }, + [211] = { + ["id"] = "fractured.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "fractured", + }, + [212] = { + ["id"] = "fractured.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "fractured", + }, + [213] = { + ["id"] = "fractured.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "fractured", + }, + [214] = { + ["id"] = "fractured.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "fractured", + }, + [215] = { + ["id"] = "fractured.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "fractured", + }, + [216] = { + ["id"] = "fractured.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "fractured", + }, + [217] = { + ["id"] = "fractured.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "fractured", + }, + [218] = { + ["id"] = "fractured.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "fractured", + }, + [219] = { + ["id"] = "fractured.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "fractured", + }, + [220] = { + ["id"] = "fractured.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "fractured", + }, + [221] = { + ["id"] = "fractured.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "fractured", + }, + [222] = { + ["id"] = "fractured.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "fractured", + }, + [223] = { + ["id"] = "fractured.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "fractured", + }, + [224] = { + ["id"] = "fractured.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "fractured", + }, + [225] = { + ["id"] = "fractured.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "fractured", + }, + [226] = { + ["id"] = "fractured.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "fractured", + }, + [227] = { + ["id"] = "fractured.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "fractured", + }, + [228] = { + ["id"] = "fractured.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "fractured", + }, + [229] = { + ["id"] = "fractured.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "fractured", + }, + [230] = { + ["id"] = "fractured.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "fractured", + }, + [231] = { + ["id"] = "fractured.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "fractured", + }, + [232] = { + ["id"] = "fractured.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "fractured", + }, + [233] = { + ["id"] = "fractured.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "fractured", + }, + [234] = { + ["id"] = "fractured.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "fractured", + }, + [235] = { + ["id"] = "fractured.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "fractured", + }, + [236] = { + ["id"] = "fractured.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "fractured", + }, + [237] = { + ["id"] = "fractured.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "fractured", + }, + [238] = { + ["id"] = "fractured.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "fractured", + }, + [239] = { + ["id"] = "fractured.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "fractured", + }, + [240] = { + ["id"] = "fractured.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "fractured", + }, + [241] = { + ["id"] = "fractured.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "fractured", + }, + [242] = { + ["id"] = "fractured.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "fractured", + }, + [243] = { + ["id"] = "fractured.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "fractured", + }, + [244] = { + ["id"] = "fractured.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "fractured", + }, + [245] = { + ["id"] = "fractured.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "fractured", + }, + [246] = { + ["id"] = "fractured.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "fractured", + }, + [247] = { + ["id"] = "fractured.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "fractured", + }, + [248] = { + ["id"] = "fractured.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "fractured", + }, + [249] = { + ["id"] = "fractured.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [250] = { + ["id"] = "fractured.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [251] = { + ["id"] = "fractured.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [252] = { + ["id"] = "fractured.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "fractured", + }, + [253] = { + ["id"] = "fractured.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "fractured", + }, + [254] = { + ["id"] = "fractured.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "fractured", + }, + [255] = { + ["id"] = "fractured.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "fractured", + }, + [256] = { + ["id"] = "fractured.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "fractured", + }, + [257] = { + ["id"] = "fractured.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "fractured", + }, + [258] = { + ["id"] = "fractured.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "fractured", + }, + [259] = { + ["id"] = "fractured.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "fractured", + }, + [260] = { + ["id"] = "fractured.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "fractured", + }, + [261] = { + ["id"] = "fractured.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "fractured", + }, + [262] = { + ["id"] = "fractured.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "fractured", + }, + [263] = { + ["id"] = "fractured.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "fractured", + }, + [264] = { + ["id"] = "fractured.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "fractured", + }, + [265] = { + ["id"] = "fractured.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "fractured", + }, + [266] = { + ["id"] = "fractured.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "fractured", + }, + [267] = { + ["id"] = "fractured.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "fractured", + }, + [268] = { + ["id"] = "fractured.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "fractured", + }, + [269] = { + ["id"] = "fractured.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "fractured", + }, + [270] = { + ["id"] = "fractured.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "fractured", + }, + [271] = { + ["id"] = "fractured.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "fractured", + }, + [272] = { + ["id"] = "fractured.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "fractured", + }, + [273] = { + ["id"] = "fractured.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "fractured", + }, + [274] = { + ["id"] = "fractured.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "fractured", + }, + [275] = { + ["id"] = "fractured.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "fractured", + }, + [276] = { + ["id"] = "fractured.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "fractured", + }, + [277] = { + ["id"] = "fractured.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "fractured", + }, + [278] = { + ["id"] = "fractured.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "fractured", + }, + [279] = { + ["id"] = "fractured.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "fractured", + }, + [280] = { + ["id"] = "fractured.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "fractured", + }, + [281] = { + ["id"] = "fractured.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "fractured", + }, + [282] = { + ["id"] = "fractured.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "fractured", + }, + [283] = { + ["id"] = "fractured.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "fractured", + }, + [284] = { + ["id"] = "fractured.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "fractured", + }, + [285] = { + ["id"] = "fractured.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "fractured", + }, + [286] = { + ["id"] = "fractured.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "fractured", + }, + [287] = { + ["id"] = "fractured.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "fractured", + }, + [288] = { + ["id"] = "fractured.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "fractured", + }, + [289] = { + ["id"] = "fractured.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "fractured", + }, + [290] = { + ["id"] = "fractured.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "fractured", + }, + [291] = { + ["id"] = "fractured.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "fractured", + }, + [292] = { + ["id"] = "fractured.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "fractured", + }, + [293] = { + ["id"] = "fractured.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "fractured", + }, + [294] = { + ["id"] = "fractured.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "fractured", + }, + [295] = { + ["id"] = "fractured.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "fractured", + }, + [296] = { + ["id"] = "fractured.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "fractured", + }, + [297] = { + ["id"] = "fractured.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "fractured", + }, + [298] = { + ["id"] = "fractured.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "fractured", + }, + [299] = { + ["id"] = "fractured.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "fractured", + }, + [300] = { + ["id"] = "fractured.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "fractured", + }, + [301] = { + ["id"] = "fractured.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "fractured", + }, + [302] = { + ["id"] = "fractured.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "fractured", + }, + [303] = { + ["id"] = "fractured.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "fractured", + }, + [304] = { + ["id"] = "fractured.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "fractured", + }, + [305] = { + ["id"] = "fractured.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "fractured", + }, + [306] = { + ["id"] = "fractured.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "fractured", + }, + [307] = { + ["id"] = "fractured.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "fractured", + }, + [308] = { + ["id"] = "fractured.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "fractured", + }, + [309] = { + ["id"] = "fractured.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "fractured", + }, + [310] = { + ["id"] = "fractured.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "fractured", + }, + [311] = { + ["id"] = "fractured.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "fractured", + }, + [312] = { + ["id"] = "fractured.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "fractured", + }, + [313] = { + ["id"] = "fractured.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "fractured", + }, + [314] = { + ["id"] = "fractured.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "fractured", + }, + [315] = { + ["id"] = "fractured.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "fractured", + }, + [316] = { + ["id"] = "fractured.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "fractured", + }, + [317] = { + ["id"] = "fractured.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "fractured", + }, + [318] = { + ["id"] = "fractured.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "fractured", + }, + [319] = { + ["id"] = "fractured.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "fractured", + }, + [320] = { + ["id"] = "fractured.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "fractured", + }, + [321] = { + ["id"] = "fractured.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "fractured", + }, + [322] = { + ["id"] = "fractured.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "fractured", + }, + [323] = { + ["id"] = "fractured.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "fractured", + }, + [324] = { + ["id"] = "fractured.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "fractured", + }, + [325] = { + ["id"] = "fractured.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "fractured", + }, + [326] = { + ["id"] = "fractured.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "fractured", + }, + [327] = { + ["id"] = "fractured.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "fractured", + }, + [328] = { + ["id"] = "fractured.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "fractured", + }, + [329] = { + ["id"] = "fractured.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "fractured", + }, + [330] = { + ["id"] = "fractured.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "fractured", + }, + [331] = { + ["id"] = "fractured.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "fractured", + }, + [332] = { + ["id"] = "fractured.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "fractured", + }, + [333] = { + ["id"] = "fractured.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "fractured", + }, + [334] = { + ["id"] = "fractured.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "fractured", + }, + [335] = { + ["id"] = "fractured.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "fractured", + }, + [336] = { + ["id"] = "fractured.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "fractured", + }, + [337] = { + ["id"] = "fractured.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "fractured", + }, + [338] = { + ["id"] = "fractured.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "fractured", + }, + [339] = { + ["id"] = "fractured.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "fractured", + }, + [340] = { + ["id"] = "fractured.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "fractured", + }, + [341] = { + ["id"] = "fractured.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "fractured", + }, + [342] = { + ["id"] = "fractured.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "fractured", + }, + [343] = { + ["id"] = "fractured.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "fractured", + }, + [344] = { + ["id"] = "fractured.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "fractured", + }, + [345] = { + ["id"] = "fractured.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "fractured", + }, + [346] = { + ["id"] = "fractured.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "fractured", + }, + [347] = { + ["id"] = "fractured.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "fractured", + }, + [348] = { + ["id"] = "fractured.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "fractured", + }, + [349] = { + ["id"] = "fractured.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "fractured", + }, + [350] = { + ["id"] = "fractured.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "fractured", + }, + [351] = { + ["id"] = "fractured.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "fractured", + }, + [352] = { + ["id"] = "fractured.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "fractured", + }, + [353] = { + ["id"] = "fractured.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "fractured", + }, + [354] = { + ["id"] = "fractured.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "fractured", + }, + [355] = { + ["id"] = "fractured.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "fractured", + }, + [356] = { + ["id"] = "fractured.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "fractured", + }, + [357] = { + ["id"] = "fractured.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "fractured", + }, + [358] = { + ["id"] = "fractured.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "fractured", + }, + [359] = { + ["id"] = "fractured.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "fractured", + }, + [360] = { + ["id"] = "fractured.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "fractured", + }, + [361] = { + ["id"] = "fractured.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "fractured", + }, + [362] = { + ["id"] = "fractured.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "fractured", + }, + [363] = { + ["id"] = "fractured.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "fractured", + }, + [364] = { + ["id"] = "fractured.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "fractured", + }, + [365] = { + ["id"] = "fractured.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "fractured", + }, + [366] = { + ["id"] = "fractured.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "fractured", + }, + [367] = { + ["id"] = "fractured.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "fractured", + }, + [368] = { + ["id"] = "fractured.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "fractured", + }, + [369] = { + ["id"] = "fractured.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "fractured", + }, + [370] = { + ["id"] = "fractured.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "fractured", + }, + [371] = { + ["id"] = "fractured.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "fractured", + }, + [372] = { + ["id"] = "fractured.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "fractured", + }, + [373] = { + ["id"] = "fractured.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "fractured", + }, + [374] = { + ["id"] = "fractured.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "fractured", + }, + [375] = { + ["id"] = "fractured.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "fractured", + }, + [376] = { + ["id"] = "fractured.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "fractured", + }, + [377] = { + ["id"] = "fractured.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "fractured", + }, + [378] = { + ["id"] = "fractured.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "fractured", + }, + [379] = { + ["id"] = "fractured.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "fractured", + }, + [380] = { + ["id"] = "fractured.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "fractured", + }, + [381] = { + ["id"] = "fractured.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "fractured", + }, + [382] = { + ["id"] = "fractured.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "fractured", + }, + [383] = { + ["id"] = "fractured.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "fractured", + }, + [384] = { + ["id"] = "fractured.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "fractured", + }, + [385] = { + ["id"] = "fractured.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "fractured", + }, + [386] = { + ["id"] = "fractured.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "fractured", + }, + [387] = { + ["id"] = "fractured.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "fractured", + }, + [388] = { + ["id"] = "fractured.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "fractured", + }, + [389] = { + ["id"] = "fractured.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "fractured", + }, + [390] = { + ["id"] = "fractured.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "fractured", + }, + [391] = { + ["id"] = "fractured.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "fractured", + }, + [392] = { + ["id"] = "fractured.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "fractured", + }, + [393] = { + ["id"] = "fractured.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "fractured", + }, + [394] = { + ["id"] = "fractured.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "fractured", + }, + [395] = { + ["id"] = "fractured.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "fractured", + }, + [396] = { + ["id"] = "fractured.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "fractured", + }, + [397] = { + ["id"] = "fractured.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "fractured", + }, + [398] = { + ["id"] = "fractured.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "fractured", + }, + [399] = { + ["id"] = "fractured.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "fractured", + }, + [400] = { + ["id"] = "fractured.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "fractured", + }, + [401] = { + ["id"] = "fractured.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "fractured", + }, + [402] = { + ["id"] = "fractured.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "fractured", + }, + [403] = { + ["id"] = "fractured.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "fractured", + }, + [404] = { + ["id"] = "fractured.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "fractured", + }, + [405] = { + ["id"] = "fractured.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "fractured", + }, + [406] = { + ["id"] = "fractured.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "fractured", + }, + [407] = { + ["id"] = "fractured.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "fractured", + }, + [408] = { + ["id"] = "fractured.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "fractured", + }, + [409] = { + ["id"] = "fractured.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "fractured", + }, + [410] = { + ["id"] = "fractured.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "fractured", + }, + [411] = { + ["id"] = "fractured.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "fractured", + }, + [412] = { + ["id"] = "fractured.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "fractured", + }, + [413] = { + ["id"] = "fractured.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "fractured", + }, + [414] = { + ["id"] = "fractured.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "fractured", + }, + [415] = { + ["id"] = "fractured.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "fractured", + }, + [416] = { + ["id"] = "fractured.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "fractured", + }, + [417] = { + ["id"] = "fractured.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "fractured", + }, + [418] = { + ["id"] = "fractured.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "fractured", + }, + [419] = { + ["id"] = "fractured.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "fractured", + }, + [420] = { + ["id"] = "fractured.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "fractured", + }, + [421] = { + ["id"] = "fractured.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "fractured", + }, + [422] = { + ["id"] = "fractured.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "fractured", + }, + [423] = { + ["id"] = "fractured.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "fractured", + }, + [424] = { + ["id"] = "fractured.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "fractured", + }, + [425] = { + ["id"] = "fractured.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "fractured", + }, + [426] = { + ["id"] = "fractured.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "fractured", + }, + [427] = { + ["id"] = "fractured.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "fractured", + }, + [428] = { + ["id"] = "fractured.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "fractured", + }, + [429] = { + ["id"] = "fractured.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "fractured", + }, + [430] = { + ["id"] = "fractured.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "fractured", + }, + [431] = { + ["id"] = "fractured.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "fractured", + }, + [432] = { + ["id"] = "fractured.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "fractured", + }, + [433] = { + ["id"] = "fractured.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "fractured", + }, + [434] = { + ["id"] = "fractured.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "fractured", + }, + [435] = { + ["id"] = "fractured.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "fractured", + }, + [436] = { + ["id"] = "fractured.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "fractured", + }, + [437] = { + ["id"] = "fractured.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "fractured", + }, + [438] = { + ["id"] = "fractured.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "fractured", + }, + [439] = { + ["id"] = "fractured.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "fractured", + }, + [440] = { + ["id"] = "fractured.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "fractured", + }, + [441] = { + ["id"] = "fractured.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "fractured", + }, + [442] = { + ["id"] = "fractured.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "fractured", + }, + [443] = { + ["id"] = "fractured.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "fractured", + }, + [444] = { + ["id"] = "fractured.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "fractured", + }, + [445] = { + ["id"] = "fractured.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "fractured", + }, + [446] = { + ["id"] = "fractured.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "fractured", + }, + [447] = { + ["id"] = "fractured.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "fractured", + }, + [448] = { + ["id"] = "fractured.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "fractured", + }, + [449] = { + ["id"] = "fractured.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "fractured", + }, + [450] = { + ["id"] = "fractured.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "fractured", + }, + [451] = { + ["id"] = "fractured.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "fractured", + }, + [452] = { + ["id"] = "fractured.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "fractured", + }, + [453] = { + ["id"] = "fractured.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "fractured", + }, + [454] = { + ["id"] = "fractured.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "fractured", + }, + [455] = { + ["id"] = "fractured.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "fractured", + }, + [456] = { + ["id"] = "fractured.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "fractured", + }, + [457] = { + ["id"] = "fractured.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "fractured", + }, + [458] = { + ["id"] = "fractured.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "fractured", + }, + [459] = { + ["id"] = "fractured.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "fractured", + }, + [460] = { + ["id"] = "fractured.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "fractured", + }, + [461] = { + ["id"] = "fractured.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "fractured", + }, + [462] = { + ["id"] = "fractured.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "fractured", + }, + [463] = { + ["id"] = "fractured.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "fractured", + }, + [464] = { + ["id"] = "fractured.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "fractured", + }, + [465] = { + ["id"] = "fractured.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "fractured", + }, + [466] = { + ["id"] = "fractured.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "fractured", + }, + [467] = { + ["id"] = "fractured.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "fractured", + }, + [468] = { + ["id"] = "fractured.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "fractured", + }, + [469] = { + ["id"] = "fractured.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "fractured", + }, + [470] = { + ["id"] = "fractured.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "fractured", + }, + [471] = { + ["id"] = "fractured.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "fractured", + }, + [472] = { + ["id"] = "fractured.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "fractured", + }, + [473] = { + ["id"] = "fractured.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "fractured", + }, + [474] = { + ["id"] = "fractured.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "fractured", + }, + [475] = { + ["id"] = "fractured.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "fractured", + }, + [476] = { + ["id"] = "fractured.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "fractured", + }, + [477] = { + ["id"] = "fractured.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "fractured", + }, + [478] = { + ["id"] = "fractured.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "fractured", + }, + [479] = { + ["id"] = "fractured.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "fractured", + }, + [480] = { + ["id"] = "fractured.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "fractured", + }, + [481] = { + ["id"] = "fractured.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "fractured", + }, + [482] = { + ["id"] = "fractured.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "fractured", + }, + [483] = { + ["id"] = "fractured.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "fractured", + }, + [484] = { + ["id"] = "fractured.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "fractured", + }, + [485] = { + ["id"] = "fractured.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "fractured", + }, + [486] = { + ["id"] = "fractured.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "fractured", + }, + [487] = { + ["id"] = "fractured.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "fractured", + }, + [488] = { + ["id"] = "fractured.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "fractured", + }, + [489] = { + ["id"] = "fractured.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "fractured", + }, + [490] = { + ["id"] = "fractured.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "fractured", + }, + [491] = { + ["id"] = "fractured.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "fractured", + }, + [492] = { + ["id"] = "fractured.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "fractured", + }, + [493] = { + ["id"] = "fractured.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "fractured", + }, + [494] = { + ["id"] = "fractured.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "fractured", + }, + [495] = { + ["id"] = "fractured.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "fractured", + }, + [496] = { + ["id"] = "fractured.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "fractured", + }, + [497] = { + ["id"] = "fractured.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "fractured", + }, + [498] = { + ["id"] = "fractured.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "fractured", + }, + [499] = { + ["id"] = "fractured.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "fractured", + }, + [500] = { + ["id"] = "fractured.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "fractured", + }, + [501] = { + ["id"] = "fractured.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "fractured", + }, + [502] = { + ["id"] = "fractured.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "fractured", + }, + [503] = { + ["id"] = "fractured.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "fractured", + }, + [504] = { + ["id"] = "fractured.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "fractured", + }, + [505] = { + ["id"] = "fractured.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "fractured", + }, + [506] = { + ["id"] = "fractured.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "fractured", + }, + [507] = { + ["id"] = "fractured.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "fractured", + }, + [508] = { + ["id"] = "fractured.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "fractured", + }, + [509] = { + ["id"] = "fractured.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "fractured", + }, + [510] = { + ["id"] = "fractured.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "fractured", + }, + [511] = { + ["id"] = "fractured.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "fractured", + }, + [512] = { + ["id"] = "fractured.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "fractured", + }, + [513] = { + ["id"] = "fractured.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "fractured", + }, + [514] = { + ["id"] = "fractured.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "fractured", + }, + [515] = { + ["id"] = "fractured.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "fractured", + }, + [516] = { + ["id"] = "fractured.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "fractured", + }, + [517] = { + ["id"] = "fractured.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "fractured", + }, + [518] = { + ["id"] = "fractured.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "fractured", + }, + [519] = { + ["id"] = "fractured.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "fractured", + }, + [520] = { + ["id"] = "fractured.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "fractured", + }, + [521] = { + ["id"] = "fractured.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "fractured", + }, + [522] = { + ["id"] = "fractured.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "fractured", + }, + [523] = { + ["id"] = "fractured.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "fractured", + }, + [524] = { + ["id"] = "fractured.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "fractured", + }, + [525] = { + ["id"] = "fractured.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "fractured", + }, + [526] = { + ["id"] = "fractured.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "fractured", + }, + [527] = { + ["id"] = "fractured.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "fractured", + }, + [528] = { + ["id"] = "fractured.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "fractured", + }, + [529] = { + ["id"] = "fractured.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "fractured", + }, + [530] = { + ["id"] = "fractured.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "fractured", + }, + [531] = { + ["id"] = "fractured.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "fractured", + }, + [532] = { + ["id"] = "fractured.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "fractured", + }, + [533] = { + ["id"] = "fractured.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "fractured", + }, + [534] = { + ["id"] = "fractured.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "fractured", + }, + [535] = { + ["id"] = "fractured.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "fractured", + }, + [536] = { + ["id"] = "fractured.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "fractured", + }, + [537] = { + ["id"] = "fractured.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "fractured", + }, + [538] = { + ["id"] = "fractured.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "fractured", + }, + [539] = { + ["id"] = "fractured.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "fractured", + }, + [540] = { + ["id"] = "fractured.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "fractured", + }, + [541] = { + ["id"] = "fractured.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "fractured", + }, + [542] = { + ["id"] = "fractured.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "fractured", + }, + [543] = { + ["id"] = "fractured.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "fractured", + }, + [544] = { + ["id"] = "fractured.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "fractured", + }, + [545] = { + ["id"] = "fractured.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "fractured", + }, + [546] = { + ["id"] = "fractured.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "fractured", + }, + [547] = { + ["id"] = "fractured.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "fractured", + }, + [548] = { + ["id"] = "fractured.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "fractured", + }, + [549] = { + ["id"] = "fractured.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "fractured", + }, + [550] = { + ["id"] = "fractured.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "fractured", + }, + [551] = { + ["id"] = "fractured.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "fractured", + }, + [552] = { + ["id"] = "fractured.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "fractured", + }, + [553] = { + ["id"] = "fractured.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "fractured", + }, + [554] = { + ["id"] = "fractured.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "fractured", + }, + [555] = { + ["id"] = "fractured.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "fractured", + }, + [556] = { + ["id"] = "fractured.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "fractured", + }, + [557] = { + ["id"] = "fractured.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "fractured", + }, + [558] = { + ["id"] = "fractured.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "fractured", + }, + [559] = { + ["id"] = "fractured.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "fractured", + }, + [560] = { + ["id"] = "fractured.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "fractured", + }, + [561] = { + ["id"] = "fractured.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "fractured", + }, + [562] = { + ["id"] = "fractured.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "fractured", + }, + [563] = { + ["id"] = "fractured.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "fractured", + }, + [564] = { + ["id"] = "fractured.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "fractured", + }, + [565] = { + ["id"] = "fractured.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "fractured", + }, + [566] = { + ["id"] = "fractured.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "fractured", + }, + [567] = { + ["id"] = "fractured.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "fractured", + }, + [568] = { + ["id"] = "fractured.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "fractured", + }, + [569] = { + ["id"] = "fractured.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "fractured", + }, + [570] = { + ["id"] = "fractured.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "fractured", + }, + [571] = { + ["id"] = "fractured.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "fractured", + }, + [572] = { + ["id"] = "fractured.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "fractured", + }, + [573] = { + ["id"] = "fractured.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "fractured", + }, + [574] = { + ["id"] = "fractured.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "fractured", + }, + [575] = { + ["id"] = "fractured.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "fractured", + }, + [576] = { + ["id"] = "fractured.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "fractured", + }, + [577] = { + ["id"] = "fractured.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "fractured", + }, + [578] = { + ["id"] = "fractured.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "fractured", + }, + [579] = { + ["id"] = "fractured.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "fractured", + }, + [580] = { + ["id"] = "fractured.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "fractured", + }, + [581] = { + ["id"] = "fractured.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "fractured", + }, + [582] = { + ["id"] = "fractured.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "fractured", + }, + [583] = { + ["id"] = "fractured.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "fractured", + }, + [584] = { + ["id"] = "fractured.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "fractured", + }, + [585] = { + ["id"] = "fractured.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "fractured", + }, + [586] = { + ["id"] = "fractured.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "fractured", + }, + [587] = { + ["id"] = "fractured.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "fractured", + }, + [588] = { + ["id"] = "fractured.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "fractured", + }, + [589] = { + ["id"] = "fractured.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "fractured", + }, + [590] = { + ["id"] = "fractured.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "fractured", + }, + [591] = { + ["id"] = "fractured.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "fractured", + }, + [592] = { + ["id"] = "fractured.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "fractured", + }, + [593] = { + ["id"] = "fractured.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "fractured", + }, + [594] = { + ["id"] = "fractured.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "fractured", + }, + [595] = { + ["id"] = "fractured.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "fractured", + }, + [596] = { + ["id"] = "fractured.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "fractured", + }, + [597] = { + ["id"] = "fractured.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "fractured", + }, + [598] = { + ["id"] = "fractured.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "fractured", + }, + [599] = { + ["id"] = "fractured.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "fractured", + }, + [600] = { + ["id"] = "fractured.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "fractured", + }, + [601] = { + ["id"] = "fractured.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "fractured", + }, + [602] = { + ["id"] = "fractured.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "fractured", + }, + [603] = { + ["id"] = "fractured.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "fractured", + }, + [604] = { + ["id"] = "fractured.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "fractured", + }, + [605] = { + ["id"] = "fractured.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "fractured", + }, + [606] = { + ["id"] = "fractured.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "fractured", + }, + [607] = { + ["id"] = "fractured.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "fractured", + }, + [608] = { + ["id"] = "fractured.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "fractured", + }, + [609] = { + ["id"] = "fractured.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "fractured", + }, + [610] = { + ["id"] = "fractured.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "fractured", + }, + [611] = { + ["id"] = "fractured.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "fractured", + }, + [612] = { + ["id"] = "fractured.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "fractured", + }, + [613] = { + ["id"] = "fractured.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "fractured", + }, + [614] = { + ["id"] = "fractured.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "fractured", + }, + [615] = { + ["id"] = "fractured.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "fractured", + }, + [616] = { + ["id"] = "fractured.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "fractured", + }, + [617] = { + ["id"] = "fractured.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "fractured", + }, + [618] = { + ["id"] = "fractured.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "fractured", + }, + [619] = { + ["id"] = "fractured.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "fractured", + }, + [620] = { + ["id"] = "fractured.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "fractured", + }, + [621] = { + ["id"] = "fractured.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "fractured", + }, + [622] = { + ["id"] = "fractured.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "fractured", + }, + [623] = { + ["id"] = "fractured.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "fractured", + }, + [624] = { + ["id"] = "fractured.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "fractured", + }, + [625] = { + ["id"] = "fractured.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "fractured", + }, + [626] = { + ["id"] = "fractured.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "fractured", + }, + [627] = { + ["id"] = "fractured.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "fractured", + }, + [628] = { + ["id"] = "fractured.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "fractured", + }, + [629] = { + ["id"] = "fractured.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "fractured", + }, + [630] = { + ["id"] = "fractured.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "fractured", + }, + [631] = { + ["id"] = "fractured.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "fractured", + }, + [632] = { + ["id"] = "fractured.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "fractured", + }, + [633] = { + ["id"] = "fractured.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "fractured", + }, + [634] = { + ["id"] = "fractured.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "fractured", + }, + [635] = { + ["id"] = "fractured.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "fractured", + }, + [636] = { + ["id"] = "fractured.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "fractured", + }, + [637] = { + ["id"] = "fractured.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "fractured", + }, + [638] = { + ["id"] = "fractured.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "fractured", + }, + [639] = { + ["id"] = "fractured.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "fractured", + }, + [640] = { + ["id"] = "fractured.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "fractured", + }, + [641] = { + ["id"] = "fractured.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "fractured", + }, + [642] = { + ["id"] = "fractured.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "fractured", + }, + [643] = { + ["id"] = "fractured.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "fractured", + }, + [644] = { + ["id"] = "fractured.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "fractured", + }, + [645] = { + ["id"] = "fractured.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "fractured", + }, + [646] = { + ["id"] = "fractured.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "fractured", + }, + [647] = { + ["id"] = "fractured.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "fractured", + }, + [648] = { + ["id"] = "fractured.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "fractured", + }, + [649] = { + ["id"] = "fractured.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "fractured", + }, + [650] = { + ["id"] = "fractured.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "fractured", + }, + [651] = { + ["id"] = "fractured.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "fractured", + }, + [652] = { + ["id"] = "fractured.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "fractured", + }, + [653] = { + ["id"] = "fractured.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "fractured", + }, + [654] = { + ["id"] = "fractured.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "fractured", + }, + [655] = { + ["id"] = "fractured.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "fractured", + }, + [656] = { + ["id"] = "fractured.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "fractured", + }, + [657] = { + ["id"] = "fractured.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "fractured", + }, + [658] = { + ["id"] = "fractured.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "fractured", + }, + [659] = { + ["id"] = "fractured.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "fractured", + }, + [660] = { + ["id"] = "fractured.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "fractured", + }, + [661] = { + ["id"] = "fractured.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "fractured", + }, + [662] = { + ["id"] = "fractured.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "fractured", + }, + [663] = { + ["id"] = "fractured.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "fractured", + }, + [664] = { + ["id"] = "fractured.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "fractured", + }, + [665] = { + ["id"] = "fractured.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "fractured", + }, + [666] = { + ["id"] = "fractured.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "fractured", + }, + [667] = { + ["id"] = "fractured.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "fractured", + }, + [668] = { + ["id"] = "fractured.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "fractured", + }, + [669] = { + ["id"] = "fractured.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "fractured", + }, + [670] = { + ["id"] = "fractured.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "fractured", + }, + [671] = { + ["id"] = "fractured.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "fractured", + }, + [672] = { + ["id"] = "fractured.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "fractured", + }, + [673] = { + ["id"] = "fractured.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "fractured", + }, + [674] = { + ["id"] = "fractured.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "fractured", + }, + [675] = { + ["id"] = "fractured.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "fractured", + }, + [676] = { + ["id"] = "fractured.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "fractured", + }, + [677] = { + ["id"] = "fractured.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "fractured", + }, + [678] = { + ["id"] = "fractured.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "fractured", + }, + [679] = { + ["id"] = "fractured.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "fractured", + }, + [680] = { + ["id"] = "fractured.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "fractured", + }, + [681] = { + ["id"] = "fractured.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "fractured", + }, + [682] = { + ["id"] = "fractured.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "fractured", + }, + [683] = { + ["id"] = "fractured.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "fractured", + }, + [684] = { + ["id"] = "fractured.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "fractured", + }, + [685] = { + ["id"] = "fractured.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "fractured", + }, + [686] = { + ["id"] = "fractured.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "fractured", + }, + [687] = { + ["id"] = "fractured.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "fractured", + }, + [688] = { + ["id"] = "fractured.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "fractured", + }, + [689] = { + ["id"] = "fractured.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "fractured", + }, + [690] = { + ["id"] = "fractured.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "fractured", + }, + [691] = { + ["id"] = "fractured.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "fractured", + }, + [692] = { + ["id"] = "fractured.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "fractured", + }, + [693] = { + ["id"] = "fractured.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "fractured", + }, + [694] = { + ["id"] = "fractured.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "fractured", + }, + [695] = { + ["id"] = "fractured.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "fractured", + }, + [696] = { + ["id"] = "fractured.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "fractured", + }, + [697] = { + ["id"] = "fractured.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "fractured", + }, + [698] = { + ["id"] = "fractured.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "fractured", + }, + [699] = { + ["id"] = "fractured.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "fractured", + }, + [700] = { + ["id"] = "fractured.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "fractured", + }, + [701] = { + ["id"] = "fractured.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "fractured", + }, + [702] = { + ["id"] = "fractured.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "fractured", + }, + [703] = { + ["id"] = "fractured.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "fractured", + }, + [704] = { + ["id"] = "fractured.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "fractured", + }, + [705] = { + ["id"] = "fractured.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "fractured", + }, + [706] = { + ["id"] = "fractured.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "fractured", + }, + [707] = { + ["id"] = "fractured.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "fractured", + }, + [708] = { + ["id"] = "fractured.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "fractured", + }, + [709] = { + ["id"] = "fractured.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "fractured", + }, + [710] = { + ["id"] = "fractured.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "fractured", + }, + [711] = { + ["id"] = "fractured.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "fractured", + }, + [712] = { + ["id"] = "fractured.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "fractured", + }, + [713] = { + ["id"] = "fractured.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "fractured", + }, + [714] = { + ["id"] = "fractured.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "fractured", + }, + [715] = { + ["id"] = "fractured.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "fractured", + }, + [716] = { + ["id"] = "fractured.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "fractured", + }, + [717] = { + ["id"] = "fractured.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "fractured", + }, + [718] = { + ["id"] = "fractured.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "fractured", + }, + [719] = { + ["id"] = "fractured.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "fractured", + }, + [720] = { + ["id"] = "fractured.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "fractured", + }, + [721] = { + ["id"] = "fractured.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "fractured", + }, + [722] = { + ["id"] = "fractured.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "fractured", + }, + [723] = { + ["id"] = "fractured.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "fractured", + }, + [724] = { + ["id"] = "fractured.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "fractured", + }, + [725] = { + ["id"] = "fractured.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "fractured", + }, + [726] = { + ["id"] = "fractured.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "fractured", + }, + [727] = { + ["id"] = "fractured.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "fractured", + }, + [728] = { + ["id"] = "fractured.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "fractured", + }, + [729] = { + ["id"] = "fractured.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "fractured", + }, + [730] = { + ["id"] = "fractured.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "fractured", + }, + [731] = { + ["id"] = "fractured.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "fractured", + }, + [732] = { + ["id"] = "fractured.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "fractured", + }, + [733] = { + ["id"] = "fractured.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "fractured", + }, + [734] = { + ["id"] = "fractured.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "fractured", + }, + [735] = { + ["id"] = "fractured.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "fractured", + }, + [736] = { + ["id"] = "fractured.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "fractured", + }, + [737] = { + ["id"] = "fractured.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "fractured", + }, + [738] = { + ["id"] = "fractured.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "fractured", + }, + [739] = { + ["id"] = "fractured.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "fractured", + }, + [740] = { + ["id"] = "fractured.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "fractured", + }, + [741] = { + ["id"] = "fractured.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "fractured", + }, + [742] = { + ["id"] = "fractured.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "fractured", + }, + [743] = { + ["id"] = "fractured.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "fractured", + }, + [744] = { + ["id"] = "fractured.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "fractured", + }, + [745] = { + ["id"] = "fractured.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "fractured", + }, + [746] = { + ["id"] = "fractured.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "fractured", + }, + [747] = { + ["id"] = "fractured.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "fractured", + }, + [748] = { + ["id"] = "fractured.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "fractured", + }, + [749] = { + ["id"] = "fractured.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "fractured", + }, + [750] = { + ["id"] = "fractured.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "fractured", + }, + [751] = { + ["id"] = "fractured.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "fractured", + }, + [752] = { + ["id"] = "fractured.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "fractured", + }, + [753] = { + ["id"] = "fractured.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "fractured", + }, + [754] = { + ["id"] = "fractured.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "fractured", + }, + [755] = { + ["id"] = "fractured.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "fractured", + }, + [756] = { + ["id"] = "fractured.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "fractured", + }, + [757] = { + ["id"] = "fractured.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "fractured", + }, + [758] = { + ["id"] = "fractured.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "fractured", + }, + [759] = { + ["id"] = "fractured.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "fractured", + }, + [760] = { + ["id"] = "fractured.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "fractured", + }, + [761] = { + ["id"] = "fractured.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "fractured", + }, + [762] = { + ["id"] = "fractured.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "fractured", + }, + [763] = { + ["id"] = "fractured.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "fractured", + }, + [764] = { + ["id"] = "fractured.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "fractured", + }, + [765] = { + ["id"] = "fractured.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "fractured", + }, + [766] = { + ["id"] = "fractured.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "fractured", + }, + [767] = { + ["id"] = "fractured.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "fractured", + }, + [768] = { + ["id"] = "fractured.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "fractured", + }, + [769] = { + ["id"] = "fractured.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "fractured", + }, + [770] = { + ["id"] = "fractured.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "fractured", + }, + [771] = { + ["id"] = "fractured.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "fractured", + }, + [772] = { + ["id"] = "fractured.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "fractured", + }, + [773] = { + ["id"] = "fractured.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "fractured", + }, + [774] = { + ["id"] = "fractured.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "fractured", + }, + [775] = { + ["id"] = "fractured.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "fractured", + }, + [776] = { + ["id"] = "fractured.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "fractured", + }, + [777] = { + ["id"] = "fractured.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "fractured", + }, + [778] = { + ["id"] = "fractured.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "fractured", + }, + [779] = { + ["id"] = "fractured.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "fractured", + }, + [780] = { + ["id"] = "fractured.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "fractured", + }, + [781] = { + ["id"] = "fractured.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "fractured", + }, + [782] = { + ["id"] = "fractured.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "fractured", + }, + [783] = { + ["id"] = "fractured.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "fractured", + }, + [784] = { + ["id"] = "fractured.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "fractured", + }, + [785] = { + ["id"] = "fractured.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "fractured", + }, + [786] = { + ["id"] = "fractured.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "fractured", + }, + [787] = { + ["id"] = "fractured.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "fractured", + }, + [788] = { + ["id"] = "fractured.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "fractured", + }, + [789] = { + ["id"] = "fractured.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "fractured", + }, + [790] = { + ["id"] = "fractured.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "fractured", + }, + [791] = { + ["id"] = "fractured.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "fractured", + }, + [792] = { + ["id"] = "fractured.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "fractured", + }, + [793] = { + ["id"] = "fractured.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "fractured", + }, + [794] = { + ["id"] = "fractured.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "fractured", + }, + [795] = { + ["id"] = "fractured.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "fractured", + }, + [796] = { + ["id"] = "fractured.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "fractured", + }, + [797] = { + ["id"] = "fractured.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "fractured", + }, + [798] = { + ["id"] = "fractured.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "fractured", + }, + [799] = { + ["id"] = "fractured.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "fractured", + }, + [800] = { + ["id"] = "fractured.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "fractured", + }, + [801] = { + ["id"] = "fractured.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "fractured", + }, + [802] = { + ["id"] = "fractured.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "fractured", + }, + [803] = { + ["id"] = "fractured.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "fractured", + }, + [804] = { + ["id"] = "fractured.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "fractured", + }, + [805] = { + ["id"] = "fractured.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "fractured", + }, + [806] = { + ["id"] = "fractured.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "fractured", + }, + [807] = { + ["id"] = "fractured.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "fractured", + }, + [808] = { + ["id"] = "fractured.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "fractured", + }, + [809] = { + ["id"] = "fractured.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "fractured", + }, + [810] = { + ["id"] = "fractured.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "fractured", + }, + [811] = { + ["id"] = "fractured.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "fractured", + }, + [812] = { + ["id"] = "fractured.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "fractured", + }, + [813] = { + ["id"] = "fractured.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "fractured", + }, + [814] = { + ["id"] = "fractured.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "fractured", + }, + [815] = { + ["id"] = "fractured.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "fractured", + }, + [816] = { + ["id"] = "fractured.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "fractured", + }, + [817] = { + ["id"] = "fractured.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "fractured", + }, + [818] = { + ["id"] = "fractured.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "fractured", + }, + [819] = { + ["id"] = "fractured.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "fractured", + }, + [820] = { + ["id"] = "fractured.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "fractured", + }, + [821] = { + ["id"] = "fractured.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "fractured", + }, + [822] = { + ["id"] = "fractured.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "fractured", + }, + [823] = { + ["id"] = "fractured.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "fractured", + }, + [824] = { + ["id"] = "fractured.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "fractured", + }, + [825] = { + ["id"] = "fractured.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "fractured", + }, + [826] = { + ["id"] = "fractured.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "fractured", + }, + [827] = { + ["id"] = "fractured.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "fractured", + }, + [828] = { + ["id"] = "fractured.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "fractured", + }, + [829] = { + ["id"] = "fractured.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "fractured", + }, + [830] = { + ["id"] = "fractured.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "fractured", + }, + [831] = { + ["id"] = "fractured.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "fractured", + }, + [832] = { + ["id"] = "fractured.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "fractured", + }, + [833] = { + ["id"] = "fractured.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "fractured", + }, + [834] = { + ["id"] = "fractured.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "fractured", + }, + [835] = { + ["id"] = "fractured.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "fractured", + }, + [836] = { + ["id"] = "fractured.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "fractured", + }, + [837] = { + ["id"] = "fractured.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "fractured", + }, + [838] = { + ["id"] = "fractured.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "fractured", + }, + [839] = { + ["id"] = "fractured.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "fractured", + }, + [840] = { + ["id"] = "fractured.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "fractured", + }, + [841] = { + ["id"] = "fractured.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "fractured", + }, + [842] = { + ["id"] = "fractured.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "fractured", + }, + [843] = { + ["id"] = "fractured.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "fractured", + }, + [844] = { + ["id"] = "fractured.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "fractured", + }, + [845] = { + ["id"] = "fractured.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "fractured", + }, + [846] = { + ["id"] = "fractured.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "fractured", + }, + [847] = { + ["id"] = "fractured.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "fractured", + }, + [848] = { + ["id"] = "fractured.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "fractured", + }, + [849] = { + ["id"] = "fractured.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "fractured", + }, + [850] = { + ["id"] = "fractured.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "fractured", + }, + [851] = { + ["id"] = "fractured.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "fractured", + }, + [852] = { + ["id"] = "fractured.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "fractured", + }, + [853] = { + ["id"] = "fractured.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + [854] = { + ["id"] = "fractured.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "fractured", + }, + [855] = { + ["id"] = "fractured.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "fractured", + }, + [856] = { + ["id"] = "fractured.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "fractured", + }, + [857] = { + ["id"] = "fractured.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "fractured", + }, + [858] = { + ["id"] = "fractured.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "fractured", + }, + [859] = { + ["id"] = "fractured.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "fractured", + }, + [860] = { + ["id"] = "fractured.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "fractured", + }, + [861] = { + ["id"] = "fractured.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "fractured", + }, + [862] = { + ["id"] = "fractured.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "fractured", + }, + [863] = { + ["id"] = "fractured.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "fractured", + }, + [864] = { + ["id"] = "fractured.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "fractured", + }, + [865] = { + ["id"] = "fractured.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "fractured", + }, + [866] = { + ["id"] = "fractured.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "fractured", + }, + [867] = { + ["id"] = "fractured.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "fractured", + }, + [868] = { + ["id"] = "fractured.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "fractured", + }, + [869] = { + ["id"] = "fractured.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "fractured", + }, + [870] = { + ["id"] = "fractured.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [871] = { + ["id"] = "fractured.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [872] = { + ["id"] = "fractured.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "fractured", + }, + [873] = { + ["id"] = "fractured.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "fractured", + }, + [874] = { + ["id"] = "fractured.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "fractured", + }, + [875] = { + ["id"] = "fractured.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "fractured", + }, + [876] = { + ["id"] = "fractured.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "fractured", + }, + [877] = { + ["id"] = "fractured.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "fractured", + }, + [878] = { + ["id"] = "fractured.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "fractured", + }, + [879] = { + ["id"] = "fractured.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "fractured", + }, + [880] = { + ["id"] = "fractured.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [881] = { + ["id"] = "fractured.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "fractured", + }, + [882] = { + ["id"] = "fractured.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "fractured", + }, + [883] = { + ["id"] = "fractured.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "fractured", + }, + [884] = { + ["id"] = "fractured.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + [885] = { + ["id"] = "fractured.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "fractured", + }, + [886] = { + ["id"] = "fractured.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + [887] = { + ["id"] = "fractured.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [888] = { + ["id"] = "fractured.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [889] = { + ["id"] = "fractured.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "fractured", + }, + [890] = { + ["id"] = "fractured.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "fractured", + }, + [891] = { + ["id"] = "fractured.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [892] = { + ["id"] = "fractured.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "fractured", + }, + [893] = { + ["id"] = "fractured.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "fractured", + }, + [894] = { + ["id"] = "fractured.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "fractured", + }, + [895] = { + ["id"] = "fractured.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "fractured", + }, + [896] = { + ["id"] = "fractured.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "fractured", + }, + [897] = { + ["id"] = "fractured.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "fractured", + }, + [898] = { + ["id"] = "fractured.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "fractured", + }, + [899] = { + ["id"] = "fractured.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "fractured", + }, + [900] = { + ["id"] = "fractured.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "fractured", + }, + [901] = { + ["id"] = "fractured.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "fractured", + }, + [902] = { + ["id"] = "fractured.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "fractured", + }, + [903] = { + ["id"] = "fractured.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [904] = { + ["id"] = "fractured.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "fractured", + }, + [905] = { + ["id"] = "fractured.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "fractured", + }, + [906] = { + ["id"] = "fractured.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "fractured", + }, + [907] = { + ["id"] = "fractured.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [908] = { + ["id"] = "fractured.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "fractured", + }, + [909] = { + ["id"] = "fractured.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "fractured", + }, + [910] = { + ["id"] = "fractured.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "fractured", + }, + [911] = { + ["id"] = "fractured.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "fractured", + }, + [912] = { + ["id"] = "fractured.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [913] = { + ["id"] = "fractured.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "fractured", + }, + [914] = { + ["id"] = "fractured.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "fractured", + }, + [915] = { + ["id"] = "fractured.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "fractured", + }, + [916] = { + ["id"] = "fractured.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "fractured", + }, + [917] = { + ["id"] = "fractured.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "fractured", + }, + [918] = { + ["id"] = "fractured.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "fractured", + }, + [919] = { + ["id"] = "fractured.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "fractured", + }, + [920] = { + ["id"] = "fractured.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "fractured", + }, + [921] = { + ["id"] = "fractured.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "fractured", + }, + [922] = { + ["id"] = "fractured.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "fractured", + }, + [923] = { + ["id"] = "fractured.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "fractured", + }, + [924] = { + ["id"] = "fractured.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "fractured", + }, + [925] = { + ["id"] = "fractured.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "fractured", + }, + [926] = { + ["id"] = "fractured.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "fractured", + }, + [927] = { + ["id"] = "fractured.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "fractured", + }, + [928] = { + ["id"] = "fractured.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "fractured", + }, + [929] = { + ["id"] = "fractured.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "fractured", + }, + [930] = { + ["id"] = "fractured.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "fractured", + }, + [931] = { + ["id"] = "fractured.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "fractured", + }, + [932] = { + ["id"] = "fractured.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "fractured", + }, + [933] = { + ["id"] = "fractured.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [934] = { + ["id"] = "fractured.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [935] = { + ["id"] = "fractured.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "fractured", + }, + [936] = { + ["id"] = "fractured.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "fractured", + }, + [937] = { + ["id"] = "fractured.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [938] = { + ["id"] = "fractured.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "fractured", + }, + [939] = { + ["id"] = "fractured.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "fractured", + }, + [940] = { + ["id"] = "fractured.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "fractured", + }, + [941] = { + ["id"] = "fractured.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "fractured", + }, + [942] = { + ["id"] = "fractured.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "fractured", + }, + [943] = { + ["id"] = "fractured.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "fractured", + }, + [944] = { + ["id"] = "fractured.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "fractured", + }, + [945] = { + ["id"] = "fractured.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "fractured", + }, + [946] = { + ["id"] = "fractured.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "fractured", + }, + [947] = { + ["id"] = "fractured.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "fractured", + }, + [948] = { + ["id"] = "fractured.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "fractured", + }, + [949] = { + ["id"] = "fractured.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "fractured", + }, + [950] = { + ["id"] = "fractured.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "fractured", + }, + [951] = { + ["id"] = "fractured.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "fractured", + }, + [952] = { + ["id"] = "fractured.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "fractured", + }, + [953] = { + ["id"] = "fractured.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "fractured", + }, + [954] = { + ["id"] = "fractured.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "fractured", + }, + [955] = { + ["id"] = "fractured.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "fractured", + }, + [956] = { + ["id"] = "fractured.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "fractured", + }, + [957] = { + ["id"] = "fractured.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "fractured", + }, + [958] = { + ["id"] = "fractured.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "fractured", + }, + [959] = { + ["id"] = "fractured.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "fractured", + }, + [960] = { + ["id"] = "fractured.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "fractured", + }, + [961] = { + ["id"] = "fractured.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "fractured", + }, + [962] = { + ["id"] = "fractured.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "fractured", + }, + [963] = { + ["id"] = "fractured.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "fractured", + }, + [964] = { + ["id"] = "fractured.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "fractured", + }, + [965] = { + ["id"] = "fractured.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "fractured", + }, + [966] = { + ["id"] = "fractured.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "fractured", + }, + [967] = { + ["id"] = "fractured.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [968] = { + ["id"] = "fractured.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "fractured", + }, + [969] = { + ["id"] = "fractured.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "fractured", + }, + [970] = { + ["id"] = "fractured.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "fractured", + }, + [971] = { + ["id"] = "fractured.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "fractured", + }, + [972] = { + ["id"] = "fractured.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "fractured", + }, + [973] = { + ["id"] = "fractured.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [974] = { + ["id"] = "fractured.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "fractured", + }, + [975] = { + ["id"] = "fractured.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "fractured", + }, + [976] = { + ["id"] = "fractured.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "fractured", + }, + [977] = { + ["id"] = "fractured.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "fractured", + }, + [978] = { + ["id"] = "fractured.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [979] = { + ["id"] = "fractured.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "fractured", + }, + [980] = { + ["id"] = "fractured.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "fractured", + }, + [981] = { + ["id"] = "fractured.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "fractured", + }, + [982] = { + ["id"] = "fractured.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "fractured", + }, + [983] = { + ["id"] = "fractured.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "fractured", + }, + [984] = { + ["id"] = "fractured.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "fractured", + }, + [985] = { + ["id"] = "fractured.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "fractured", + }, + [986] = { + ["id"] = "fractured.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "fractured", + }, + [987] = { + ["id"] = "fractured.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + [988] = { + ["id"] = "fractured.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [989] = { + ["id"] = "fractured.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [990] = { + ["id"] = "fractured.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "fractured", + }, + [991] = { + ["id"] = "fractured.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "fractured", + }, + [992] = { + ["id"] = "fractured.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "fractured", + }, + [993] = { + ["id"] = "fractured.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "fractured", + }, + [994] = { + ["id"] = "fractured.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "fractured", + }, + [995] = { + ["id"] = "fractured.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "fractured", + }, + [996] = { + ["id"] = "fractured.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "fractured", + }, + [997] = { + ["id"] = "fractured.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "fractured", + }, + [998] = { + ["id"] = "fractured.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "fractured", + }, + [999] = { + ["id"] = "fractured.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "fractured", + }, + [1000] = { + ["id"] = "fractured.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "fractured", + }, + [1001] = { + ["id"] = "fractured.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "fractured", + }, + [1002] = { + ["id"] = "fractured.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "fractured", + }, + [1003] = { + ["id"] = "fractured.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [1004] = { + ["id"] = "fractured.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "fractured", + }, + [1005] = { + ["id"] = "fractured.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "fractured", + }, + [1006] = { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "fractured", + }, + [1007] = { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "fractured", + }, + [1008] = { + ["id"] = "fractured.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "fractured", + }, + [1009] = { + ["id"] = "fractured.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "fractured", + }, + [1010] = { + ["id"] = "fractured.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + [1011] = { + ["id"] = "fractured.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "fractured", + }, + [1012] = { + ["id"] = "fractured.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [1013] = { + ["id"] = "fractured.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "fractured", + }, + [1014] = { + ["id"] = "fractured.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "fractured", + }, + [1015] = { + ["id"] = "fractured.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "fractured", + }, + [1016] = { + ["id"] = "fractured.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "fractured", + }, + [1017] = { + ["id"] = "fractured.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "fractured", + }, + [1018] = { + ["id"] = "fractured.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "fractured", + }, + [1019] = { + ["id"] = "fractured.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "fractured", + }, + [1020] = { + ["id"] = "fractured.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "fractured", + }, + [1021] = { + ["id"] = "fractured.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "fractured", + }, + [1022] = { + ["id"] = "fractured.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "fractured", + }, + [1023] = { + ["id"] = "fractured.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "fractured", + }, + [1024] = { + ["id"] = "fractured.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "fractured", + }, + [1025] = { + ["id"] = "fractured.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "fractured", + }, + [1026] = { + ["id"] = "fractured.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "fractured", + }, + [1027] = { + ["id"] = "fractured.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "fractured", + }, + [1028] = { + ["id"] = "fractured.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "fractured", + }, + [1029] = { + ["id"] = "fractured.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "fractured", + }, + [1030] = { + ["id"] = "fractured.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "fractured", + }, + [1031] = { + ["id"] = "fractured.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "fractured", + }, + [1032] = { + ["id"] = "fractured.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "fractured", + }, + [1033] = { + ["id"] = "fractured.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "fractured", + }, + [1034] = { + ["id"] = "fractured.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "fractured", + }, + [1035] = { + ["id"] = "fractured.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "fractured", + }, + [1036] = { + ["id"] = "fractured.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "fractured", + }, + [1037] = { + ["id"] = "fractured.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "fractured", + }, + [1038] = { + ["id"] = "fractured.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [1039] = { + ["id"] = "fractured.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "fractured", + }, + [1040] = { + ["id"] = "fractured.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "fractured", + }, + [1041] = { + ["id"] = "fractured.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "fractured", + }, + [1042] = { + ["id"] = "fractured.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "fractured", + }, + [1043] = { + ["id"] = "fractured.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "fractured", + }, + [1044] = { + ["id"] = "fractured.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "fractured", + }, + [1045] = { + ["id"] = "fractured.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "fractured", + }, + [1046] = { + ["id"] = "fractured.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + [1047] = { + ["id"] = "fractured.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "fractured", + }, + [1048] = { + ["id"] = "fractured.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "fractured", + }, + [1049] = { + ["id"] = "fractured.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "fractured", + }, + [1050] = { + ["id"] = "fractured.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "fractured", + }, + [1051] = { + ["id"] = "fractured.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "fractured", + }, + [1052] = { + ["id"] = "fractured.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "fractured", + }, + [1053] = { + ["id"] = "fractured.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "fractured", + }, + [1054] = { + ["id"] = "fractured.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "fractured", + }, + [1055] = { + ["id"] = "fractured.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "fractured", + }, + [1056] = { + ["id"] = "fractured.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "fractured", + }, + [1057] = { + ["id"] = "fractured.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "fractured", + }, + [1058] = { + ["id"] = "fractured.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "fractured", + }, + [1059] = { + ["id"] = "fractured.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "fractured", + }, + [1060] = { + ["id"] = "fractured.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "fractured", + }, + [1061] = { + ["id"] = "fractured.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "fractured", + }, + [1062] = { + ["id"] = "fractured.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "fractured", + }, + [1063] = { + ["id"] = "fractured.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "fractured", + }, + [1064] = { + ["id"] = "fractured.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "fractured", + }, + [1065] = { + ["id"] = "fractured.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "fractured", + }, + [1066] = { + ["id"] = "fractured.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "fractured", + }, + [1067] = { + ["id"] = "fractured.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "fractured", + }, + [1068] = { + ["id"] = "fractured.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "fractured", + }, + [1069] = { + ["id"] = "fractured.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "fractured", + }, + [1070] = { + ["id"] = "fractured.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "fractured", + }, + [1071] = { + ["id"] = "fractured.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "fractured", + }, + [1072] = { + ["id"] = "fractured.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "fractured", + }, + [1073] = { + ["id"] = "fractured.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + [1074] = { + ["id"] = "fractured.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "fractured", + }, + [1075] = { + ["id"] = "fractured.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "fractured", + }, + [1076] = { + ["id"] = "fractured.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "fractured", + }, + [1077] = { + ["id"] = "fractured.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "fractured", + }, + [1078] = { + ["id"] = "fractured.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [1079] = { + ["id"] = "fractured.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [1080] = { + ["id"] = "fractured.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "fractured", + }, + [1081] = { + ["id"] = "fractured.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [1082] = { + ["id"] = "fractured.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "fractured", + }, + [1083] = { + ["id"] = "fractured.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "fractured", + }, + [1084] = { + ["id"] = "fractured.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + [1085] = { + ["id"] = "fractured.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "fractured", + }, + [1086] = { + ["id"] = "fractured.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "fractured", + }, + [1087] = { + ["id"] = "fractured.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [1088] = { + ["id"] = "fractured.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "fractured", + }, + [1089] = { + ["id"] = "fractured.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "fractured", + }, + [1090] = { + ["id"] = "fractured.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "fractured", + }, + [1091] = { + ["id"] = "fractured.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "fractured", + }, + [1092] = { + ["id"] = "fractured.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "fractured", + }, + }, + ["id"] = "fractured", + ["label"] = "Fractured", + }, + [5] = { + ["entries"] = { + [1] = { + ["id"] = "crafted.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "crafted", + }, + [2] = { + ["id"] = "crafted.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "crafted", + }, + [3] = { + ["id"] = "crafted.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "crafted", + }, + [4] = { + ["id"] = "crafted.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "crafted", + }, + [5] = { + ["id"] = "crafted.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "crafted", + }, + [6] = { + ["id"] = "crafted.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "crafted", + }, + [7] = { + ["id"] = "crafted.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "crafted", + }, + [8] = { + ["id"] = "crafted.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "crafted", + }, + [9] = { + ["id"] = "crafted.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "crafted", + }, + [10] = { + ["id"] = "crafted.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "crafted", + }, + [11] = { + ["id"] = "crafted.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "crafted", + }, + [12] = { + ["id"] = "crafted.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "crafted", + }, + [13] = { + ["id"] = "crafted.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "crafted", + }, + [14] = { + ["id"] = "crafted.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "crafted", + }, + [15] = { + ["id"] = "crafted.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "crafted", + }, + [16] = { + ["id"] = "crafted.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "crafted", + }, + [17] = { + ["id"] = "crafted.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "crafted", + }, + [18] = { + ["id"] = "crafted.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["type"] = "crafted", + }, + [19] = { + ["id"] = "crafted.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "crafted", + }, + [20] = { + ["id"] = "crafted.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "crafted", + }, + [21] = { + ["id"] = "crafted.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "crafted", + }, + [22] = { + ["id"] = "crafted.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "crafted", + }, + [23] = { + ["id"] = "crafted.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "crafted", + }, + [24] = { + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "crafted", + }, + [25] = { + ["id"] = "crafted.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "crafted", + }, + [26] = { + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "crafted", + }, + [27] = { + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "crafted", + }, + [28] = { + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "crafted", + }, + [29] = { + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "crafted", + }, + [30] = { + ["id"] = "crafted.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "crafted", + }, + [31] = { + ["id"] = "crafted.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "crafted", + }, + [32] = { + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "crafted", + }, + [33] = { + ["id"] = "crafted.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "crafted", + }, + [34] = { + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "crafted", + }, + [35] = { + ["id"] = "crafted.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "crafted", + }, + [36] = { + ["id"] = "crafted.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "crafted", + }, + [37] = { + ["id"] = "crafted.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "crafted", + }, + [38] = { + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [39] = { + ["id"] = "crafted.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "crafted", + }, + [40] = { + ["id"] = "crafted.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "crafted", + }, + [41] = { + ["id"] = "crafted.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "crafted", + }, + [42] = { + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "crafted", + }, + [43] = { + ["id"] = "crafted.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "crafted", + }, + [44] = { + ["id"] = "crafted.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "crafted", + }, + [45] = { + ["id"] = "crafted.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "crafted", + }, + [46] = { + ["id"] = "crafted.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "crafted", + }, + [47] = { + ["id"] = "crafted.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "crafted", + }, + [48] = { + ["id"] = "crafted.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "crafted", + }, + [49] = { + ["id"] = "crafted.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "crafted", + }, + [50] = { + ["id"] = "crafted.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "crafted", + }, + [51] = { + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "crafted", + }, + [52] = { + ["id"] = "crafted.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "crafted", + }, + [53] = { + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "crafted", + }, + [54] = { + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "crafted", + }, + [55] = { + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "crafted", + }, + [56] = { + ["id"] = "crafted.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "crafted", + }, + [57] = { + ["id"] = "crafted.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "crafted", + }, + [58] = { + ["id"] = "crafted.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "crafted", + }, + [59] = { + ["id"] = "crafted.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "crafted", + }, + [60] = { + ["id"] = "crafted.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "crafted", + }, + [61] = { + ["id"] = "crafted.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "crafted", + }, + [62] = { + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "crafted", + }, + [63] = { + ["id"] = "crafted.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "crafted", + }, + [64] = { + ["id"] = "crafted.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "crafted", + }, + [65] = { + ["id"] = "crafted.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "crafted", + }, + [66] = { + ["id"] = "crafted.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "crafted", + }, + [67] = { + ["id"] = "crafted.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "crafted", + }, + [68] = { + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "crafted", + }, + [69] = { + ["id"] = "crafted.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "crafted", + }, + [70] = { + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "crafted", + }, + [71] = { + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "crafted", + }, + [72] = { + ["id"] = "crafted.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "crafted", + }, + [73] = { + ["id"] = "crafted.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "crafted", + }, + [74] = { + ["id"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "crafted", + }, + [75] = { + ["id"] = "crafted.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "crafted", + }, + [76] = { + ["id"] = "crafted.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "crafted", + }, + [77] = { + ["id"] = "crafted.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "crafted", + }, + [78] = { + ["id"] = "crafted.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "crafted", + }, + [79] = { + ["id"] = "crafted.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "crafted", + }, + [80] = { + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "crafted", + }, + [81] = { + ["id"] = "crafted.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "crafted", + }, + [82] = { + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "crafted", + }, + [83] = { + ["id"] = "crafted.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "crafted", + }, + [84] = { + ["id"] = "crafted.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "crafted", + }, + [85] = { + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "crafted", + }, + [86] = { + ["id"] = "crafted.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "crafted", + }, + [87] = { + ["id"] = "crafted.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "crafted", + }, + [88] = { + ["id"] = "crafted.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "crafted", + }, + [89] = { + ["id"] = "crafted.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [90] = { + ["id"] = "crafted.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "crafted", + }, + [91] = { + ["id"] = "crafted.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "crafted", + }, + [92] = { + ["id"] = "crafted.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [93] = { + ["id"] = "crafted.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [94] = { + ["id"] = "crafted.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [95] = { + ["id"] = "crafted.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "crafted", + }, + [96] = { + ["id"] = "crafted.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "crafted", + }, + [97] = { + ["id"] = "crafted.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "crafted", + }, + [98] = { + ["id"] = "crafted.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "crafted", + }, + [99] = { + ["id"] = "crafted.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "crafted", + }, + [100] = { + ["id"] = "crafted.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "crafted", + }, + [101] = { + ["id"] = "crafted.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "crafted", + }, + [102] = { + ["id"] = "crafted.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "crafted", + }, + [103] = { + ["id"] = "crafted.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "crafted", + }, + [104] = { + ["id"] = "crafted.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "crafted", + }, + [105] = { + ["id"] = "crafted.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "crafted", + }, + [106] = { + ["id"] = "crafted.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "crafted", + }, + [107] = { + ["id"] = "crafted.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "crafted", + }, + [108] = { + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "crafted", + }, + [109] = { + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "crafted", + }, + [110] = { + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "crafted", + }, + [111] = { + ["id"] = "crafted.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "crafted", + }, + [112] = { + ["id"] = "crafted.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "crafted", + }, + [113] = { + ["id"] = "crafted.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "crafted", + }, + [114] = { + ["id"] = "crafted.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "crafted", + }, + [115] = { + ["id"] = "crafted.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "crafted", + }, + [116] = { + ["id"] = "crafted.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "crafted", + }, + [117] = { + ["id"] = "crafted.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "crafted", + }, + [118] = { + ["id"] = "crafted.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "crafted", + }, + [119] = { + ["id"] = "crafted.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "crafted", + }, + [120] = { + ["id"] = "crafted.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "crafted", + }, + [121] = { + ["id"] = "crafted.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "crafted", + }, + [122] = { + ["id"] = "crafted.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "crafted", + }, + [123] = { + ["id"] = "crafted.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "crafted", + }, + [124] = { + ["id"] = "crafted.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "crafted", + }, + [125] = { + ["id"] = "crafted.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "crafted", + }, + [126] = { + ["id"] = "crafted.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "crafted", + }, + [127] = { + ["id"] = "crafted.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "crafted", + }, + [128] = { + ["id"] = "crafted.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "crafted", + }, + [129] = { + ["id"] = "crafted.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "crafted", + }, + [130] = { + ["id"] = "crafted.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "crafted", + }, + [131] = { + ["id"] = "crafted.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "crafted", + }, + [132] = { + ["id"] = "crafted.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "crafted", + }, + [133] = { + ["id"] = "crafted.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "crafted", + }, + [134] = { + ["id"] = "crafted.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "crafted", + }, + [135] = { + ["id"] = "crafted.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "crafted", + }, + [136] = { + ["id"] = "crafted.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "crafted", + }, + [137] = { + ["id"] = "crafted.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "crafted", + }, + [138] = { + ["id"] = "crafted.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "crafted", + }, + [139] = { + ["id"] = "crafted.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "crafted", + }, + [140] = { + ["id"] = "crafted.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "crafted", + }, + [141] = { + ["id"] = "crafted.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "crafted", + }, + [142] = { + ["id"] = "crafted.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "crafted", + }, + [143] = { + ["id"] = "crafted.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "crafted", + }, + [144] = { + ["id"] = "crafted.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "crafted", + }, + [145] = { + ["id"] = "crafted.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "crafted", + }, + [146] = { + ["id"] = "crafted.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "crafted", + }, + [147] = { + ["id"] = "crafted.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "crafted", + }, + [148] = { + ["id"] = "crafted.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "crafted", + }, + [149] = { + ["id"] = "crafted.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "crafted", + }, + [150] = { + ["id"] = "crafted.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "crafted", + }, + [151] = { + ["id"] = "crafted.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "crafted", + }, + [152] = { + ["id"] = "crafted.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "crafted", + }, + [153] = { + ["id"] = "crafted.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "crafted", + }, + [154] = { + ["id"] = "crafted.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "crafted", + }, + [155] = { + ["id"] = "crafted.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "crafted", + }, + [156] = { + ["id"] = "crafted.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "crafted", + }, + [157] = { + ["id"] = "crafted.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "crafted", + }, + [158] = { + ["id"] = "crafted.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "crafted", + }, + [159] = { + ["id"] = "crafted.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "crafted", + }, + [160] = { + ["id"] = "crafted.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "crafted", + }, + [161] = { + ["id"] = "crafted.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "crafted", + }, + [162] = { + ["id"] = "crafted.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "crafted", + }, + [163] = { + ["id"] = "crafted.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "crafted", + }, + [164] = { + ["id"] = "crafted.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "crafted", + }, + [165] = { + ["id"] = "crafted.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "crafted", + }, + [166] = { + ["id"] = "crafted.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "crafted", + }, + [167] = { + ["id"] = "crafted.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "crafted", + }, + [168] = { + ["id"] = "crafted.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "crafted", + }, + [169] = { + ["id"] = "crafted.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "crafted", + }, + [170] = { + ["id"] = "crafted.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "crafted", + }, + [171] = { + ["id"] = "crafted.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "crafted", + }, + [172] = { + ["id"] = "crafted.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "crafted", + }, + [173] = { + ["id"] = "crafted.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "crafted", + }, + [174] = { + ["id"] = "crafted.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "crafted", + }, + [175] = { + ["id"] = "crafted.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "crafted", + }, + [176] = { + ["id"] = "crafted.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "crafted", + }, + [177] = { + ["id"] = "crafted.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "crafted", + }, + [178] = { + ["id"] = "crafted.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "crafted", + }, + [179] = { + ["id"] = "crafted.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "crafted", + }, + [180] = { + ["id"] = "crafted.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "crafted", + }, + [181] = { + ["id"] = "crafted.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "crafted", + }, + [182] = { + ["id"] = "crafted.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "crafted", + }, + [183] = { + ["id"] = "crafted.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "crafted", + }, + [184] = { + ["id"] = "crafted.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "crafted", + }, + [185] = { + ["id"] = "crafted.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "crafted", + }, + [186] = { + ["id"] = "crafted.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "crafted", + }, + [187] = { + ["id"] = "crafted.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "crafted", + }, + [188] = { + ["id"] = "crafted.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "crafted", + }, + [189] = { + ["id"] = "crafted.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "crafted", + }, + [190] = { + ["id"] = "crafted.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "crafted", + }, + [191] = { + ["id"] = "crafted.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "crafted", + }, + [192] = { + ["id"] = "crafted.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "crafted", + }, + [193] = { + ["id"] = "crafted.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "crafted", + }, + [194] = { + ["id"] = "crafted.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "crafted", + }, + [195] = { + ["id"] = "crafted.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "crafted", + }, + [196] = { + ["id"] = "crafted.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "crafted", + }, + [197] = { + ["id"] = "crafted.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "crafted", + }, + [198] = { + ["id"] = "crafted.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "crafted", + }, + [199] = { + ["id"] = "crafted.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "crafted", + }, + [200] = { + ["id"] = "crafted.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "crafted", + }, + [201] = { + ["id"] = "crafted.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "crafted", + }, + [202] = { + ["id"] = "crafted.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "crafted", + }, + [203] = { + ["id"] = "crafted.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "crafted", + }, + [204] = { + ["id"] = "crafted.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "crafted", + }, + [205] = { + ["id"] = "crafted.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "crafted", + }, + [206] = { + ["id"] = "crafted.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "crafted", + }, + [207] = { + ["id"] = "crafted.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "crafted", + }, + [208] = { + ["id"] = "crafted.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "crafted", + }, + [209] = { + ["id"] = "crafted.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "crafted", + }, + [210] = { + ["id"] = "crafted.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "crafted", + }, + [211] = { + ["id"] = "crafted.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "crafted", + }, + [212] = { + ["id"] = "crafted.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "crafted", + }, + [213] = { + ["id"] = "crafted.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "crafted", + }, + [214] = { + ["id"] = "crafted.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "crafted", + }, + [215] = { + ["id"] = "crafted.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "crafted", + }, + [216] = { + ["id"] = "crafted.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "crafted", + }, + [217] = { + ["id"] = "crafted.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "crafted", + }, + [218] = { + ["id"] = "crafted.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "crafted", + }, + [219] = { + ["id"] = "crafted.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "crafted", + }, + [220] = { + ["id"] = "crafted.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "crafted", + }, + [221] = { + ["id"] = "crafted.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "crafted", + }, + [222] = { + ["id"] = "crafted.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "crafted", + }, + [223] = { + ["id"] = "crafted.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "crafted", + }, + [224] = { + ["id"] = "crafted.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "crafted", + }, + [225] = { + ["id"] = "crafted.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "crafted", + }, + [226] = { + ["id"] = "crafted.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "crafted", + }, + [227] = { + ["id"] = "crafted.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "crafted", + }, + [228] = { + ["id"] = "crafted.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "crafted", + }, + [229] = { + ["id"] = "crafted.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "crafted", + }, + [230] = { + ["id"] = "crafted.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "crafted", + }, + [231] = { + ["id"] = "crafted.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "crafted", + }, + [232] = { + ["id"] = "crafted.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "crafted", + }, + [233] = { + ["id"] = "crafted.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "crafted", + }, + [234] = { + ["id"] = "crafted.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "crafted", + }, + [235] = { + ["id"] = "crafted.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "crafted", + }, + [236] = { + ["id"] = "crafted.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "crafted", + }, + [237] = { + ["id"] = "crafted.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "crafted", + }, + [238] = { + ["id"] = "crafted.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["type"] = "crafted", + }, + [239] = { + ["id"] = "crafted.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "crafted", + }, + [240] = { + ["id"] = "crafted.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "crafted", + }, + [241] = { + ["id"] = "crafted.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [242] = { + ["id"] = "crafted.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "crafted", + }, + [243] = { + ["id"] = "crafted.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "crafted", + }, + [244] = { + ["id"] = "crafted.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["type"] = "crafted", + }, + [245] = { + ["id"] = "crafted.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "crafted", + }, + [246] = { + ["id"] = "crafted.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "crafted", + }, + [247] = { + ["id"] = "crafted.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "crafted", + }, + [248] = { + ["id"] = "crafted.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [249] = { + ["id"] = "crafted.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [250] = { + ["id"] = "crafted.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "crafted", + }, + [251] = { + ["id"] = "crafted.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "crafted", + }, + [252] = { + ["id"] = "crafted.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "crafted", + }, + [253] = { + ["id"] = "crafted.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "crafted", + }, + [254] = { + ["id"] = "crafted.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "crafted", + }, + [255] = { + ["id"] = "crafted.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "crafted", + }, + [256] = { + ["id"] = "crafted.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "crafted", + }, + [257] = { + ["id"] = "crafted.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [258] = { + ["id"] = "crafted.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "crafted", + }, + [259] = { + ["id"] = "crafted.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "crafted", + }, + [260] = { + ["id"] = "crafted.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "crafted", + }, + [261] = { + ["id"] = "crafted.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "crafted", + }, + [262] = { + ["id"] = "crafted.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "crafted", + }, + [263] = { + ["id"] = "crafted.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "crafted", + }, + [264] = { + ["id"] = "crafted.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [265] = { + ["id"] = "crafted.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "crafted", + }, + [266] = { + ["id"] = "crafted.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "crafted", + }, + [267] = { + ["id"] = "crafted.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "crafted", + }, + [268] = { + ["id"] = "crafted.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "crafted", + }, + [269] = { + ["id"] = "crafted.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "crafted", + }, + [270] = { + ["id"] = "crafted.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "crafted", + }, + [271] = { + ["id"] = "crafted.stat_248192092", + ["text"] = "Notable Passive Skills in Radius also grant #% to Chaos Resistance", + ["type"] = "crafted", + }, + [272] = { + ["id"] = "crafted.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "crafted", + }, + [273] = { + ["id"] = "crafted.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "crafted", + }, + [274] = { + ["id"] = "crafted.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "crafted", + }, + [275] = { + ["id"] = "crafted.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "crafted", + }, + [276] = { + ["id"] = "crafted.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "crafted", + }, + [277] = { + ["id"] = "crafted.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "crafted", + }, + [278] = { + ["id"] = "crafted.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", + ["type"] = "crafted", + }, + [279] = { + ["id"] = "crafted.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "crafted", + }, + [280] = { + ["id"] = "crafted.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "crafted", + }, + [281] = { + ["id"] = "crafted.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "crafted", + }, + [282] = { + ["id"] = "crafted.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "crafted", + }, + [283] = { + ["id"] = "crafted.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "crafted", + }, + [284] = { + ["id"] = "crafted.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "crafted", + }, + [285] = { + ["id"] = "crafted.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "crafted", + }, + [286] = { + ["id"] = "crafted.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "crafted", + }, + [287] = { + ["id"] = "crafted.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "crafted", + }, + [288] = { + ["id"] = "crafted.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "crafted", + }, + [289] = { + ["id"] = "crafted.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "crafted", + }, + [290] = { + ["id"] = "crafted.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "crafted", + }, + [291] = { + ["id"] = "crafted.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "crafted", + }, + [292] = { + ["id"] = "crafted.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "crafted", + }, + [293] = { + ["id"] = "crafted.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "crafted", + }, + [294] = { + ["id"] = "crafted.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "crafted", + }, + [295] = { + ["id"] = "crafted.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "crafted", + }, + [296] = { + ["id"] = "crafted.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "crafted", + }, + [297] = { + ["id"] = "crafted.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "crafted", + }, + [298] = { + ["id"] = "crafted.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "crafted", + }, + [299] = { + ["id"] = "crafted.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "crafted", + }, + [300] = { + ["id"] = "crafted.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", + ["type"] = "crafted", + }, + [301] = { + ["id"] = "crafted.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "crafted", + }, + }, + ["id"] = "crafted", + ["label"] = "Crafted", + }, + [6] = { + ["entries"] = { + [1] = { + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + [2] = { + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + [3] = { + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + [4] = { + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + [5] = { + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + [6] = { + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "enchant", + }, + [7] = { + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "enchant", + }, + [8] = { + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "enchant", + }, + [9] = { + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "enchant", + }, + [10] = { + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", + }, + [11] = { + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", + }, + [12] = { + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "enchant", + }, + [13] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", + }, + [14] = { + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + [15] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + [16] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", + }, + [17] = { + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", + }, + [18] = { + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", + }, + [19] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + [20] = { + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", + }, + [21] = { + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", + }, + [22] = { + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", + }, + [23] = { + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", + }, + [24] = { + ["id"] = "enchant.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "enchant", + }, + [25] = { + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", + }, + [26] = { + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + [27] = { + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + [28] = { + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + [29] = { + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", + }, + [30] = { + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "enchant", + }, + [31] = { + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + [32] = { + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "enchant", + }, + [33] = { + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + [34] = { + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", + }, + [35] = { + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", + }, + [36] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + [37] = { + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + [38] = { + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + [39] = { + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", + }, + [40] = { + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", + }, + [41] = { + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + [42] = { + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", + }, + [43] = { + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", + }, + [44] = { + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", + }, + [45] = { + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "enchant", + }, + [46] = { + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", + }, + [47] = { + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + [48] = { + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", + }, + [49] = { + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "enchant", + }, + [50] = { + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", + }, + [51] = { + ["id"] = "enchant.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "enchant", + }, + [52] = { + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", + }, + [53] = { + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", + }, + [54] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + [55] = { + ["id"] = "enchant.stat_2017682521", + ["text"] = "#% increased Pack Size", + ["type"] = "enchant", + }, + [56] = { + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + [57] = { + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + [58] = { + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + [59] = { + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Quantity of Tablets found", + ["type"] = "enchant", + }, + [60] = { + ["id"] = "enchant.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "enchant", + }, + [61] = { + ["id"] = "enchant.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + [62] = { + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + [63] = { + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", + }, + [64] = { + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", + }, + [65] = { + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", + }, + [66] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + [67] = { + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", + }, + [68] = { + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["type"] = "enchant", + }, + [69] = { + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["type"] = "enchant", + }, + [70] = { + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "enchant", + }, + [71] = { + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Tablets found in Area", + ["type"] = "enchant", + }, + [72] = { + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + [73] = { + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + [74] = { + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + [75] = { + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + [76] = { + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", + }, + [77] = { + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + [78] = { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + [79] = { + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", + }, + [80] = { + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", + }, + [81] = { + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", + }, + [82] = { + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", + }, + [83] = { + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", + }, + [84] = { + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", + }, + [85] = { + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", + }, + [86] = { + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", + }, + [87] = { + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", + }, + [88] = { + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", + }, + [89] = { + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", + }, + [90] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", + }, + [91] = { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", + }, + [92] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", + }, + [93] = { + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + [94] = { + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + [95] = { + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", + }, + [96] = { + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", + }, + [97] = { + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + [98] = { + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "enchant", + }, + [99] = { + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "enchant", + }, + [100] = { + ["id"] = "enchant.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "enchant", + }, + [101] = { + ["id"] = "enchant.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "enchant", + }, + [102] = { + ["id"] = "enchant.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "enchant", + }, + [103] = { + ["id"] = "enchant.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "enchant", + }, + [104] = { + ["id"] = "enchant.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "enchant", + }, + [105] = { + ["id"] = "enchant.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "enchant", + }, + [106] = { + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "enchant", + }, + [107] = { + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "enchant", + }, + [108] = { + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "enchant", + }, + [109] = { + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "enchant", + }, + [110] = { + ["id"] = "enchant.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "enchant", + }, + [111] = { + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "enchant", + }, + [112] = { + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "enchant", + }, + [113] = { + ["id"] = "enchant.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "enchant", + }, + [114] = { + ["id"] = "enchant.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "enchant", + }, + [115] = { + ["id"] = "enchant.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "enchant", + }, + [116] = { + ["id"] = "enchant.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "enchant", + }, + [117] = { + ["id"] = "enchant.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "enchant", + }, + [118] = { + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "enchant", + }, + [119] = { + ["id"] = "enchant.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "enchant", + }, + [120] = { + ["id"] = "enchant.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "enchant", + }, + [121] = { + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "enchant", + }, + [122] = { + ["id"] = "enchant.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "enchant", + }, + [123] = { + ["id"] = "enchant.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "enchant", + }, + [124] = { + ["id"] = "enchant.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "enchant", + }, + [125] = { + ["id"] = "enchant.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "enchant", + }, + [126] = { + ["id"] = "enchant.stat_2954116742|62431", + ["text"] = "Allocates Anticipation", + ["type"] = "enchant", + }, + [127] = { + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "enchant", + }, + [128] = { + ["id"] = "enchant.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "enchant", + }, + [129] = { + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "enchant", + }, + [130] = { + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "enchant", + }, + [131] = { + ["id"] = "enchant.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "enchant", + }, + [132] = { + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "enchant", + }, + [133] = { + ["id"] = "enchant.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "enchant", + }, + [134] = { + ["id"] = "enchant.stat_2954116742|26926", + ["text"] = "Allocates Archon of Undeath", + ["type"] = "enchant", + }, + [135] = { + ["id"] = "enchant.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "enchant", + }, + [136] = { + ["id"] = "enchant.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "enchant", + }, + [137] = { + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "enchant", + }, + [138] = { + ["id"] = "enchant.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "enchant", + }, + [139] = { + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "enchant", + }, + [140] = { + ["id"] = "enchant.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "enchant", + }, + [141] = { + ["id"] = "enchant.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "enchant", + }, + [142] = { + ["id"] = "enchant.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", + ["type"] = "enchant", + }, + [143] = { + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "enchant", + }, + [144] = { + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "enchant", + }, + [145] = { + ["id"] = "enchant.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "enchant", + }, + [146] = { + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "enchant", + }, + [147] = { + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "enchant", + }, + [148] = { + ["id"] = "enchant.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "enchant", + }, + [149] = { + ["id"] = "enchant.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "enchant", + }, + [150] = { + ["id"] = "enchant.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "enchant", + }, + [151] = { + ["id"] = "enchant.stat_2954116742|37846", + ["text"] = "Allocates Bastion of Light", + ["type"] = "enchant", + }, + [152] = { + ["id"] = "enchant.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "enchant", + }, + [153] = { + ["id"] = "enchant.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "enchant", + }, + [154] = { + ["id"] = "enchant.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "enchant", + }, + [155] = { + ["id"] = "enchant.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "enchant", + }, + [156] = { + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "enchant", + }, + [157] = { + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "enchant", + }, + [158] = { + ["id"] = "enchant.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "enchant", + }, + [159] = { + ["id"] = "enchant.stat_2954116742|15825", + ["text"] = "Allocates Bhatair's Storm", + ["type"] = "enchant", + }, + [160] = { + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "enchant", + }, + [161] = { + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "enchant", + }, + [162] = { + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "enchant", + }, + [163] = { + ["id"] = "enchant.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "enchant", + }, + [164] = { + ["id"] = "enchant.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "enchant", + }, + [165] = { + ["id"] = "enchant.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "enchant", + }, + [166] = { + ["id"] = "enchant.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "enchant", + }, + [167] = { + ["id"] = "enchant.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "enchant", + }, + [168] = { + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "enchant", + }, + [169] = { + ["id"] = "enchant.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "enchant", + }, + [170] = { + ["id"] = "enchant.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "enchant", + }, + [171] = { + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "enchant", + }, + [172] = { + ["id"] = "enchant.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "enchant", + }, + [173] = { + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "enchant", + }, + [174] = { + ["id"] = "enchant.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", + ["type"] = "enchant", + }, + [175] = { + ["id"] = "enchant.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "enchant", + }, + [176] = { + ["id"] = "enchant.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "enchant", + }, + [177] = { + ["id"] = "enchant.stat_2954116742|712", + ["text"] = "Allocates Bond of the Ape", + ["type"] = "enchant", + }, + [178] = { + ["id"] = "enchant.stat_2954116742|1448", + ["text"] = "Allocates Bond of the Cat", + ["type"] = "enchant", + }, + [179] = { + ["id"] = "enchant.stat_2954116742|47853", + ["text"] = "Allocates Bond of the Mamba", + ["type"] = "enchant", + }, + [180] = { + ["id"] = "enchant.stat_2954116742|52568", + ["text"] = "Allocates Bond of the Owl", + ["type"] = "enchant", + }, + [181] = { + ["id"] = "enchant.stat_2954116742|34478", + ["text"] = "Allocates Bond of the Viper", + ["type"] = "enchant", + }, + [182] = { + ["id"] = "enchant.stat_2954116742|5191", + ["text"] = "Allocates Bond of the Wolf", + ["type"] = "enchant", + }, + [183] = { + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "enchant", + }, + [184] = { + ["id"] = "enchant.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "enchant", + }, + [185] = { + ["id"] = "enchant.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "enchant", + }, + [186] = { + ["id"] = "enchant.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "enchant", + }, + [187] = { + ["id"] = "enchant.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "enchant", + }, + [188] = { + ["id"] = "enchant.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "enchant", + }, + [189] = { + ["id"] = "enchant.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "enchant", + }, + [190] = { + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "enchant", + }, + [191] = { + ["id"] = "enchant.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "enchant", + }, + [192] = { + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "enchant", + }, + [193] = { + ["id"] = "enchant.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "enchant", + }, + [194] = { + ["id"] = "enchant.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "enchant", + }, + [195] = { + ["id"] = "enchant.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "enchant", + }, + [196] = { + ["id"] = "enchant.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "enchant", + }, + [197] = { + ["id"] = "enchant.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "enchant", + }, + [198] = { + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "enchant", + }, + [199] = { + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "enchant", + }, + [200] = { + ["id"] = "enchant.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "enchant", + }, + [201] = { + ["id"] = "enchant.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "enchant", + }, + [202] = { + ["id"] = "enchant.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "enchant", + }, + [203] = { + ["id"] = "enchant.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "enchant", + }, + [204] = { + ["id"] = "enchant.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "enchant", + }, + [205] = { + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "enchant", + }, + [206] = { + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "enchant", + }, + [207] = { + ["id"] = "enchant.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "enchant", + }, + [208] = { + ["id"] = "enchant.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "enchant", + }, + [209] = { + ["id"] = "enchant.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "enchant", + }, + [210] = { + ["id"] = "enchant.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "enchant", + }, + [211] = { + ["id"] = "enchant.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "enchant", + }, + [212] = { + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "enchant", + }, + [213] = { + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "enchant", + }, + [214] = { + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "enchant", + }, + [215] = { + ["id"] = "enchant.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "enchant", + }, + [216] = { + ["id"] = "enchant.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "enchant", + }, + [217] = { + ["id"] = "enchant.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "enchant", + }, + [218] = { + ["id"] = "enchant.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "enchant", + }, + [219] = { + ["id"] = "enchant.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "enchant", + }, + [220] = { + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "enchant", + }, + [221] = { + ["id"] = "enchant.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "enchant", + }, + [222] = { + ["id"] = "enchant.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "enchant", + }, + [223] = { + ["id"] = "enchant.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "enchant", + }, + [224] = { + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "enchant", + }, + [225] = { + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "enchant", + }, + [226] = { + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "enchant", + }, + [227] = { + ["id"] = "enchant.stat_2954116742|21213", + ["text"] = "Allocates Cirel of Tarth's Light", + ["type"] = "enchant", + }, + [228] = { + ["id"] = "enchant.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "enchant", + }, + [229] = { + ["id"] = "enchant.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "enchant", + }, + [230] = { + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "enchant", + }, + [231] = { + ["id"] = "enchant.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "enchant", + }, + [232] = { + ["id"] = "enchant.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "enchant", + }, + [233] = { + ["id"] = "enchant.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "enchant", + }, + [234] = { + ["id"] = "enchant.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "enchant", + }, + [235] = { + ["id"] = "enchant.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "enchant", + }, + [236] = { + ["id"] = "enchant.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "enchant", + }, + [237] = { + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "enchant", + }, + [238] = { + ["id"] = "enchant.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", + ["type"] = "enchant", + }, + [239] = { + ["id"] = "enchant.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "enchant", + }, + [240] = { + ["id"] = "enchant.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "enchant", + }, + [241] = { + ["id"] = "enchant.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "enchant", + }, + [242] = { + ["id"] = "enchant.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "enchant", + }, + [243] = { + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "enchant", + }, + [244] = { + ["id"] = "enchant.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "enchant", + }, + [245] = { + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "enchant", + }, + [246] = { + ["id"] = "enchant.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "enchant", + }, + [247] = { + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "enchant", + }, + [248] = { + ["id"] = "enchant.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "enchant", + }, + [249] = { + ["id"] = "enchant.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "enchant", + }, + [250] = { + ["id"] = "enchant.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "enchant", + }, + [251] = { + ["id"] = "enchant.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "enchant", + }, + [252] = { + ["id"] = "enchant.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "enchant", + }, + [253] = { + ["id"] = "enchant.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "enchant", + }, + [254] = { + ["id"] = "enchant.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "enchant", + }, + [255] = { + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "enchant", + }, + [256] = { + ["id"] = "enchant.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "enchant", + }, + [257] = { + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "enchant", + }, + [258] = { + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "enchant", + }, + [259] = { + ["id"] = "enchant.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "enchant", + }, + [260] = { + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "enchant", + }, + [261] = { + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "enchant", + }, + [262] = { + ["id"] = "enchant.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "enchant", + }, + [263] = { + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "enchant", + }, + [264] = { + ["id"] = "enchant.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "enchant", + }, + [265] = { + ["id"] = "enchant.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "enchant", + }, + [266] = { + ["id"] = "enchant.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "enchant", + }, + [267] = { + ["id"] = "enchant.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "enchant", + }, + [268] = { + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "enchant", + }, + [269] = { + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "enchant", + }, + [270] = { + ["id"] = "enchant.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "enchant", + }, + [271] = { + ["id"] = "enchant.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", + ["type"] = "enchant", + }, + [272] = { + ["id"] = "enchant.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "enchant", + }, + [273] = { + ["id"] = "enchant.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "enchant", + }, + [274] = { + ["id"] = "enchant.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "enchant", + }, + [275] = { + ["id"] = "enchant.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "enchant", + }, + [276] = { + ["id"] = "enchant.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "enchant", + }, + [277] = { + ["id"] = "enchant.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "enchant", + }, + [278] = { + ["id"] = "enchant.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "enchant", + }, + [279] = { + ["id"] = "enchant.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "enchant", + }, + [280] = { + ["id"] = "enchant.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "enchant", + }, + [281] = { + ["id"] = "enchant.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "enchant", + }, + [282] = { + ["id"] = "enchant.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "enchant", + }, + [283] = { + ["id"] = "enchant.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "enchant", + }, + [284] = { + ["id"] = "enchant.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "enchant", + }, + [285] = { + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "enchant", + }, + [286] = { + ["id"] = "enchant.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "enchant", + }, + [287] = { + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "enchant", + }, + [288] = { + ["id"] = "enchant.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "enchant", + }, + [289] = { + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "enchant", + }, + [290] = { + ["id"] = "enchant.stat_2954116742|37967", + ["text"] = "Allocates Desert's Scorn", + ["type"] = "enchant", + }, + [291] = { + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "enchant", + }, + [292] = { + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "enchant", + }, + [293] = { + ["id"] = "enchant.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "enchant", + }, + [294] = { + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "enchant", + }, + [295] = { + ["id"] = "enchant.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "enchant", + }, + [296] = { + ["id"] = "enchant.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "enchant", + }, + [297] = { + ["id"] = "enchant.stat_2954116742|44573", + ["text"] = "Allocates Disciplined Training", + ["type"] = "enchant", + }, + [298] = { + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "enchant", + }, + [299] = { + ["id"] = "enchant.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "enchant", + }, + [300] = { + ["id"] = "enchant.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "enchant", + }, + [301] = { + ["id"] = "enchant.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "enchant", + }, + [302] = { + ["id"] = "enchant.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "enchant", + }, + [303] = { + ["id"] = "enchant.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "enchant", + }, + [304] = { + ["id"] = "enchant.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "enchant", + }, + [305] = { + ["id"] = "enchant.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "enchant", + }, + [306] = { + ["id"] = "enchant.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", + ["type"] = "enchant", + }, + [307] = { + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "enchant", + }, + [308] = { + ["id"] = "enchant.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "enchant", + }, + [309] = { + ["id"] = "enchant.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "enchant", + }, + [310] = { + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "enchant", + }, + [311] = { + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "enchant", + }, + [312] = { + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "enchant", + }, + [313] = { + ["id"] = "enchant.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "enchant", + }, + [314] = { + ["id"] = "enchant.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "enchant", + }, + [315] = { + ["id"] = "enchant.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "enchant", + }, + [316] = { + ["id"] = "enchant.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "enchant", + }, + [317] = { + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "enchant", + }, + [318] = { + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "enchant", + }, + [319] = { + ["id"] = "enchant.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "enchant", + }, + [320] = { + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "enchant", + }, + [321] = { + ["id"] = "enchant.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "enchant", + }, + [322] = { + ["id"] = "enchant.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "enchant", + }, + [323] = { + ["id"] = "enchant.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "enchant", + }, + [324] = { + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "enchant", + }, + [325] = { + ["id"] = "enchant.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "enchant", + }, + [326] = { + ["id"] = "enchant.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "enchant", + }, + [327] = { + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "enchant", + }, + [328] = { + ["id"] = "enchant.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "enchant", + }, + [329] = { + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "enchant", + }, + [330] = { + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "enchant", + }, + [331] = { + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "enchant", + }, + [332] = { + ["id"] = "enchant.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "enchant", + }, + [333] = { + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "enchant", + }, + [334] = { + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "enchant", + }, + [335] = { + ["id"] = "enchant.stat_2954116742|59781", + ["text"] = "Allocates Embodiment of Death", + ["type"] = "enchant", + }, + [336] = { + ["id"] = "enchant.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "enchant", + }, + [337] = { + ["id"] = "enchant.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "enchant", + }, + [338] = { + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "enchant", + }, + [339] = { + ["id"] = "enchant.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "enchant", + }, + [340] = { + ["id"] = "enchant.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "enchant", + }, + [341] = { + ["id"] = "enchant.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "enchant", + }, + [342] = { + ["id"] = "enchant.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "enchant", + }, + [343] = { + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "enchant", + }, + [344] = { + ["id"] = "enchant.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "enchant", + }, + [345] = { + ["id"] = "enchant.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "enchant", + }, + [346] = { + ["id"] = "enchant.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "enchant", + }, + [347] = { + ["id"] = "enchant.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "enchant", + }, + [348] = { + ["id"] = "enchant.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "enchant", + }, + [349] = { + ["id"] = "enchant.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "enchant", + }, + [350] = { + ["id"] = "enchant.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "enchant", + }, + [351] = { + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "enchant", + }, + [352] = { + ["id"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "enchant", + }, + [353] = { + ["id"] = "enchant.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "enchant", + }, + [354] = { + ["id"] = "enchant.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "enchant", + }, + [355] = { + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "enchant", + }, + [356] = { + ["id"] = "enchant.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "enchant", + }, + [357] = { + ["id"] = "enchant.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "enchant", + }, + [358] = { + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "enchant", + }, + [359] = { + ["id"] = "enchant.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "enchant", + }, + [360] = { + ["id"] = "enchant.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "enchant", + }, + [361] = { + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "enchant", + }, + [362] = { + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "enchant", + }, + [363] = { + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "enchant", + }, + [364] = { + ["id"] = "enchant.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "enchant", + }, + [365] = { + ["id"] = "enchant.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "enchant", + }, + [366] = { + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "enchant", + }, + [367] = { + ["id"] = "enchant.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "enchant", + }, + [368] = { + ["id"] = "enchant.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "enchant", + }, + [369] = { + ["id"] = "enchant.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "enchant", + }, + [370] = { + ["id"] = "enchant.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "enchant", + }, + [371] = { + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "enchant", + }, + [372] = { + ["id"] = "enchant.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "enchant", + }, + [373] = { + ["id"] = "enchant.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "enchant", + }, + [374] = { + ["id"] = "enchant.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "enchant", + }, + [375] = { + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "enchant", + }, + [376] = { + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "enchant", + }, + [377] = { + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "enchant", + }, + [378] = { + ["id"] = "enchant.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "enchant", + }, + [379] = { + ["id"] = "enchant.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "enchant", + }, + [380] = { + ["id"] = "enchant.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "enchant", + }, + [381] = { + ["id"] = "enchant.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "enchant", + }, + [382] = { + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "enchant", + }, + [383] = { + ["id"] = "enchant.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "enchant", + }, + [384] = { + ["id"] = "enchant.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "enchant", + }, + [385] = { + ["id"] = "enchant.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "enchant", + }, + [386] = { + ["id"] = "enchant.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "enchant", + }, + [387] = { + ["id"] = "enchant.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "enchant", + }, + [388] = { + ["id"] = "enchant.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "enchant", + }, + [389] = { + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "enchant", + }, + [390] = { + ["id"] = "enchant.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "enchant", + }, + [391] = { + ["id"] = "enchant.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "enchant", + }, + [392] = { + ["id"] = "enchant.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "enchant", + }, + [393] = { + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "enchant", + }, + [394] = { + ["id"] = "enchant.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "enchant", + }, + [395] = { + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "enchant", + }, + [396] = { + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "enchant", + }, + [397] = { + ["id"] = "enchant.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "enchant", + }, + [398] = { + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "enchant", + }, + [399] = { + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "enchant", + }, + [400] = { + ["id"] = "enchant.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "enchant", + }, + [401] = { + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "enchant", + }, + [402] = { + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "enchant", + }, + [403] = { + ["id"] = "enchant.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "enchant", + }, + [404] = { + ["id"] = "enchant.stat_2954116742|49356", + ["text"] = "Allocates First Principle of the Hollow", + ["type"] = "enchant", + }, + [405] = { + ["id"] = "enchant.stat_2954116742|59657", + ["text"] = "Allocates First Teachings of the Keeper", + ["type"] = "enchant", + }, + [406] = { + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "enchant", + }, + [407] = { + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "enchant", + }, + [408] = { + ["id"] = "enchant.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "enchant", + }, + [409] = { + ["id"] = "enchant.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "enchant", + }, + [410] = { + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "enchant", + }, + [411] = { + ["id"] = "enchant.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "enchant", + }, + [412] = { + ["id"] = "enchant.stat_2954116742|59438", + ["text"] = "Allocates Flow of Life", + ["type"] = "enchant", + }, + [413] = { + ["id"] = "enchant.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "enchant", + }, + [414] = { + ["id"] = "enchant.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "enchant", + }, + [415] = { + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "enchant", + }, + [416] = { + ["id"] = "enchant.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "enchant", + }, + [417] = { + ["id"] = "enchant.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "enchant", + }, + [418] = { + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "enchant", + }, + [419] = { + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "enchant", + }, + [420] = { + ["id"] = "enchant.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "enchant", + }, + [421] = { + ["id"] = "enchant.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "enchant", + }, + [422] = { + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "enchant", + }, + [423] = { + ["id"] = "enchant.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "enchant", + }, + [424] = { + ["id"] = "enchant.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", + ["type"] = "enchant", + }, + [425] = { + ["id"] = "enchant.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "enchant", + }, + [426] = { + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "enchant", + }, + [427] = { + ["id"] = "enchant.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "enchant", + }, + [428] = { + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "enchant", + }, + [429] = { + ["id"] = "enchant.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "enchant", + }, + [430] = { + ["id"] = "enchant.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "enchant", + }, + [431] = { + ["id"] = "enchant.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "enchant", + }, + [432] = { + ["id"] = "enchant.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "enchant", + }, + [433] = { + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "enchant", + }, + [434] = { + ["id"] = "enchant.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "enchant", + }, + [435] = { + ["id"] = "enchant.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "enchant", + }, + [436] = { + ["id"] = "enchant.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "enchant", + }, + [437] = { + ["id"] = "enchant.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "enchant", + }, + [438] = { + ["id"] = "enchant.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "enchant", + }, + [439] = { + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "enchant", + }, + [440] = { + ["id"] = "enchant.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "enchant", + }, + [441] = { + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "enchant", + }, + [442] = { + ["id"] = "enchant.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "enchant", + }, + [443] = { + ["id"] = "enchant.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "enchant", + }, + [444] = { + ["id"] = "enchant.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "enchant", + }, + [445] = { + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "enchant", + }, + [446] = { + ["id"] = "enchant.stat_2954116742|27704", + ["text"] = "Allocates Grace of the Ancestors", + ["type"] = "enchant", + }, + [447] = { + ["id"] = "enchant.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "enchant", + }, + [448] = { + ["id"] = "enchant.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "enchant", + }, + [449] = { + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "enchant", + }, + [450] = { + ["id"] = "enchant.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "enchant", + }, + [451] = { + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "enchant", + }, + [452] = { + ["id"] = "enchant.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "enchant", + }, + [453] = { + ["id"] = "enchant.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "enchant", + }, + [454] = { + ["id"] = "enchant.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "enchant", + }, + [455] = { + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "enchant", + }, + [456] = { + ["id"] = "enchant.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "enchant", + }, + [457] = { + ["id"] = "enchant.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "enchant", + }, + [458] = { + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "enchant", + }, + [459] = { + ["id"] = "enchant.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "enchant", + }, + [460] = { + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "enchant", + }, + [461] = { + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "enchant", + }, + [462] = { + ["id"] = "enchant.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "enchant", + }, + [463] = { + ["id"] = "enchant.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "enchant", + }, + [464] = { + ["id"] = "enchant.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "enchant", + }, + [465] = { + ["id"] = "enchant.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "enchant", + }, + [466] = { + ["id"] = "enchant.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "enchant", + }, + [467] = { + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "enchant", + }, + [468] = { + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "enchant", + }, + [469] = { + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "enchant", + }, + [470] = { + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "enchant", + }, + [471] = { + ["id"] = "enchant.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "enchant", + }, + [472] = { + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "enchant", + }, + [473] = { + ["id"] = "enchant.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "enchant", + }, + [474] = { + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "enchant", + }, + [475] = { + ["id"] = "enchant.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "enchant", + }, + [476] = { + ["id"] = "enchant.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "enchant", + }, + [477] = { + ["id"] = "enchant.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "enchant", + }, + [478] = { + ["id"] = "enchant.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "enchant", + }, + [479] = { + ["id"] = "enchant.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "enchant", + }, + [480] = { + ["id"] = "enchant.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "enchant", + }, + [481] = { + ["id"] = "enchant.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "enchant", + }, + [482] = { + ["id"] = "enchant.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "enchant", + }, + [483] = { + ["id"] = "enchant.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "enchant", + }, + [484] = { + ["id"] = "enchant.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "enchant", + }, + [485] = { + ["id"] = "enchant.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "enchant", + }, + [486] = { + ["id"] = "enchant.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "enchant", + }, + [487] = { + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "enchant", + }, + [488] = { + ["id"] = "enchant.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "enchant", + }, + [489] = { + ["id"] = "enchant.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "enchant", + }, + [490] = { + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "enchant", + }, + [491] = { + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "enchant", + }, + [492] = { + ["id"] = "enchant.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "enchant", + }, + [493] = { + ["id"] = "enchant.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "enchant", + }, + [494] = { + ["id"] = "enchant.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "enchant", + }, + [495] = { + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "enchant", + }, + [496] = { + ["id"] = "enchant.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "enchant", + }, + [497] = { + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "enchant", + }, + [498] = { + ["id"] = "enchant.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "enchant", + }, + [499] = { + ["id"] = "enchant.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "enchant", + }, + [500] = { + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "enchant", + }, + [501] = { + ["id"] = "enchant.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "enchant", + }, + [502] = { + ["id"] = "enchant.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "enchant", + }, + [503] = { + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "enchant", + }, + [504] = { + ["id"] = "enchant.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "enchant", + }, + [505] = { + ["id"] = "enchant.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "enchant", + }, + [506] = { + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "enchant", + }, + [507] = { + ["id"] = "enchant.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "enchant", + }, + [508] = { + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "enchant", + }, + [509] = { + ["id"] = "enchant.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "enchant", + }, + [510] = { + ["id"] = "enchant.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "enchant", + }, + [511] = { + ["id"] = "enchant.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "enchant", + }, + [512] = { + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "enchant", + }, + [513] = { + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "enchant", + }, + [514] = { + ["id"] = "enchant.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "enchant", + }, + [515] = { + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "enchant", + }, + [516] = { + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "enchant", + }, + [517] = { + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "enchant", + }, + [518] = { + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "enchant", + }, + [519] = { + ["id"] = "enchant.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "enchant", + }, + [520] = { + ["id"] = "enchant.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "enchant", + }, + [521] = { + ["id"] = "enchant.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "enchant", + }, + [522] = { + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "enchant", + }, + [523] = { + ["id"] = "enchant.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "enchant", + }, + [524] = { + ["id"] = "enchant.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "enchant", + }, + [525] = { + ["id"] = "enchant.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "enchant", + }, + [526] = { + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "enchant", + }, + [527] = { + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "enchant", + }, + [528] = { + ["id"] = "enchant.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "enchant", + }, + [529] = { + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "enchant", + }, + [530] = { + ["id"] = "enchant.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "enchant", + }, + [531] = { + ["id"] = "enchant.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "enchant", + }, + [532] = { + ["id"] = "enchant.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "enchant", + }, + [533] = { + ["id"] = "enchant.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "enchant", + }, + [534] = { + ["id"] = "enchant.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "enchant", + }, + [535] = { + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "enchant", + }, + [536] = { + ["id"] = "enchant.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "enchant", + }, + [537] = { + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "enchant", + }, + [538] = { + ["id"] = "enchant.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "enchant", + }, + [539] = { + ["id"] = "enchant.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "enchant", + }, + [540] = { + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "enchant", + }, + [541] = { + ["id"] = "enchant.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "enchant", + }, + [542] = { + ["id"] = "enchant.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "enchant", + }, + [543] = { + ["id"] = "enchant.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "enchant", + }, + [544] = { + ["id"] = "enchant.stat_2954116742|3663", + ["text"] = "Allocates Kaom's Blessing", + ["type"] = "enchant", + }, + [545] = { + ["id"] = "enchant.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "enchant", + }, + [546] = { + ["id"] = "enchant.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "enchant", + }, + [547] = { + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "enchant", + }, + [548] = { + ["id"] = "enchant.stat_2954116742|24736", + ["text"] = "Allocates Knight of Chitus", + ["type"] = "enchant", + }, + [549] = { + ["id"] = "enchant.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", + ["type"] = "enchant", + }, + [550] = { + ["id"] = "enchant.stat_2954116742|1861", + ["text"] = "Allocates Knight of Tarcus", + ["type"] = "enchant", + }, + [551] = { + ["id"] = "enchant.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "enchant", + }, + [552] = { + ["id"] = "enchant.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "enchant", + }, + [553] = { + ["id"] = "enchant.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "enchant", + }, + [554] = { + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "enchant", + }, + [555] = { + ["id"] = "enchant.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "enchant", + }, + [556] = { + ["id"] = "enchant.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "enchant", + }, + [557] = { + ["id"] = "enchant.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "enchant", + }, + [558] = { + ["id"] = "enchant.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "enchant", + }, + [559] = { + ["id"] = "enchant.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "enchant", + }, + [560] = { + ["id"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "enchant", + }, + [561] = { + ["id"] = "enchant.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "enchant", + }, + [562] = { + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "enchant", + }, + [563] = { + ["id"] = "enchant.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "enchant", + }, + [564] = { + ["id"] = "enchant.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "enchant", + }, + [565] = { + ["id"] = "enchant.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "enchant", + }, + [566] = { + ["id"] = "enchant.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "enchant", + }, + [567] = { + ["id"] = "enchant.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "enchant", + }, + [568] = { + ["id"] = "enchant.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "enchant", + }, + [569] = { + ["id"] = "enchant.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "enchant", + }, + [570] = { + ["id"] = "enchant.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "enchant", + }, + [571] = { + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "enchant", + }, + [572] = { + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "enchant", + }, + [573] = { + ["id"] = "enchant.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "enchant", + }, + [574] = { + ["id"] = "enchant.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "enchant", + }, + [575] = { + ["id"] = "enchant.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "enchant", + }, + [576] = { + ["id"] = "enchant.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "enchant", + }, + [577] = { + ["id"] = "enchant.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "enchant", + }, + [578] = { + ["id"] = "enchant.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", + ["type"] = "enchant", + }, + [579] = { + ["id"] = "enchant.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "enchant", + }, + [580] = { + ["id"] = "enchant.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "enchant", + }, + [581] = { + ["id"] = "enchant.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "enchant", + }, + [582] = { + ["id"] = "enchant.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "enchant", + }, + [583] = { + ["id"] = "enchant.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "enchant", + }, + [584] = { + ["id"] = "enchant.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "enchant", + }, + [585] = { + ["id"] = "enchant.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "enchant", + }, + [586] = { + ["id"] = "enchant.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "enchant", + }, + [587] = { + ["id"] = "enchant.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "enchant", + }, + [588] = { + ["id"] = "enchant.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "enchant", + }, + [589] = { + ["id"] = "enchant.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "enchant", + }, + [590] = { + ["id"] = "enchant.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "enchant", + }, + [591] = { + ["id"] = "enchant.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "enchant", + }, + [592] = { + ["id"] = "enchant.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "enchant", + }, + [593] = { + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "enchant", + }, + [594] = { + ["id"] = "enchant.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "enchant", + }, + [595] = { + ["id"] = "enchant.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "enchant", + }, + [596] = { + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "enchant", + }, + [597] = { + ["id"] = "enchant.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "enchant", + }, + [598] = { + ["id"] = "enchant.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "enchant", + }, + [599] = { + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "enchant", + }, + [600] = { + ["id"] = "enchant.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "enchant", + }, + [601] = { + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "enchant", + }, + [602] = { + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "enchant", + }, + [603] = { + ["id"] = "enchant.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "enchant", + }, + [604] = { + ["id"] = "enchant.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "enchant", + }, + [605] = { + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "enchant", + }, + [606] = { + ["id"] = "enchant.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "enchant", + }, + [607] = { + ["id"] = "enchant.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "enchant", + }, + [608] = { + ["id"] = "enchant.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "enchant", + }, + [609] = { + ["id"] = "enchant.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "enchant", + }, + [610] = { + ["id"] = "enchant.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "enchant", + }, + [611] = { + ["id"] = "enchant.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "enchant", + }, + [612] = { + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "enchant", + }, + [613] = { + ["id"] = "enchant.stat_2954116742|64770", + ["text"] = "Allocates Morgana, the Storm Seer", + ["type"] = "enchant", + }, + [614] = { + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "enchant", + }, + [615] = { + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "enchant", + }, + [616] = { + ["id"] = "enchant.stat_2954116742|50239", + ["text"] = "Allocates Mutewind Agility", + ["type"] = "enchant", + }, + [617] = { + ["id"] = "enchant.stat_2954116742|35046", + ["text"] = "Allocates Mystic Avalanche", + ["type"] = "enchant", + }, + [618] = { + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "enchant", + }, + [619] = { + ["id"] = "enchant.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "enchant", + }, + [620] = { + ["id"] = "enchant.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "enchant", + }, + [621] = { + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "enchant", + }, + [622] = { + ["id"] = "enchant.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "enchant", + }, + [623] = { + ["id"] = "enchant.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", + ["type"] = "enchant", + }, + [624] = { + ["id"] = "enchant.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "enchant", + }, + [625] = { + ["id"] = "enchant.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "enchant", + }, + [626] = { + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "enchant", + }, + [627] = { + ["id"] = "enchant.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "enchant", + }, + [628] = { + ["id"] = "enchant.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "enchant", + }, + [629] = { + ["id"] = "enchant.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "enchant", + }, + [630] = { + ["id"] = "enchant.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "enchant", + }, + [631] = { + ["id"] = "enchant.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "enchant", + }, + [632] = { + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "enchant", + }, + [633] = { + ["id"] = "enchant.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "enchant", + }, + [634] = { + ["id"] = "enchant.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "enchant", + }, + [635] = { + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "enchant", + }, + [636] = { + ["id"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "enchant", + }, + [637] = { + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "enchant", + }, + [638] = { + ["id"] = "enchant.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "enchant", + }, + [639] = { + ["id"] = "enchant.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "enchant", + }, + [640] = { + ["id"] = "enchant.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "enchant", + }, + [641] = { + ["id"] = "enchant.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "enchant", + }, + [642] = { + ["id"] = "enchant.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "enchant", + }, + [643] = { + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "enchant", + }, + [644] = { + ["id"] = "enchant.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "enchant", + }, + [645] = { + ["id"] = "enchant.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "enchant", + }, + [646] = { + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "enchant", + }, + [647] = { + ["id"] = "enchant.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "enchant", + }, + [648] = { + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "enchant", + }, + [649] = { + ["id"] = "enchant.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "enchant", + }, + [650] = { + ["id"] = "enchant.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "enchant", + }, + [651] = { + ["id"] = "enchant.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "enchant", + }, + [652] = { + ["id"] = "enchant.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "enchant", + }, + [653] = { + ["id"] = "enchant.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "enchant", + }, + [654] = { + ["id"] = "enchant.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "enchant", + }, + [655] = { + ["id"] = "enchant.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "enchant", + }, + [656] = { + ["id"] = "enchant.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "enchant", + }, + [657] = { + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "enchant", + }, + [658] = { + ["id"] = "enchant.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "enchant", + }, + [659] = { + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "enchant", + }, + [660] = { + ["id"] = "enchant.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "enchant", + }, + [661] = { + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "enchant", + }, + [662] = { + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "enchant", + }, + [663] = { + ["id"] = "enchant.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "enchant", + }, + [664] = { + ["id"] = "enchant.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "enchant", + }, + [665] = { + ["id"] = "enchant.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "enchant", + }, + [666] = { + ["id"] = "enchant.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "enchant", + }, + [667] = { + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "enchant", + }, + [668] = { + ["id"] = "enchant.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "enchant", + }, + [669] = { + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "enchant", + }, + [670] = { + ["id"] = "enchant.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "enchant", + }, + [671] = { + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "enchant", + }, + [672] = { + ["id"] = "enchant.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "enchant", + }, + [673] = { + ["id"] = "enchant.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "enchant", + }, + [674] = { + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "enchant", + }, + [675] = { + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "enchant", + }, + [676] = { + ["id"] = "enchant.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "enchant", + }, + [677] = { + ["id"] = "enchant.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "enchant", + }, + [678] = { + ["id"] = "enchant.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "enchant", + }, + [679] = { + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "enchant", + }, + [680] = { + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "enchant", + }, + [681] = { + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "enchant", + }, + [682] = { + ["id"] = "enchant.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "enchant", + }, + [683] = { + ["id"] = "enchant.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "enchant", + }, + [684] = { + ["id"] = "enchant.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "enchant", + }, + [685] = { + ["id"] = "enchant.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "enchant", + }, + [686] = { + ["id"] = "enchant.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "enchant", + }, + [687] = { + ["id"] = "enchant.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "enchant", + }, + [688] = { + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "enchant", + }, + [689] = { + ["id"] = "enchant.stat_2954116742|62210", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + [690] = { + ["id"] = "enchant.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + [691] = { + ["id"] = "enchant.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "enchant", + }, + [692] = { + ["id"] = "enchant.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "enchant", + }, + [693] = { + ["id"] = "enchant.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "enchant", + }, + [694] = { + ["id"] = "enchant.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "enchant", + }, + [695] = { + ["id"] = "enchant.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "enchant", + }, + [696] = { + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "enchant", + }, + [697] = { + ["id"] = "enchant.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "enchant", + }, + [698] = { + ["id"] = "enchant.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "enchant", + }, + [699] = { + ["id"] = "enchant.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "enchant", + }, + [700] = { + ["id"] = "enchant.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "enchant", + }, + [701] = { + ["id"] = "enchant.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "enchant", + }, + [702] = { + ["id"] = "enchant.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "enchant", + }, + [703] = { + ["id"] = "enchant.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "enchant", + }, + [704] = { + ["id"] = "enchant.stat_2954116742|61309", + ["text"] = "Allocates Redblade Discipline", + ["type"] = "enchant", + }, + [705] = { + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "enchant", + }, + [706] = { + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "enchant", + }, + [707] = { + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "enchant", + }, + [708] = { + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "enchant", + }, + [709] = { + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "enchant", + }, + [710] = { + ["id"] = "enchant.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "enchant", + }, + [711] = { + ["id"] = "enchant.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "enchant", + }, + [712] = { + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "enchant", + }, + [713] = { + ["id"] = "enchant.stat_2954116742|21251", + ["text"] = "Allocates Replenishing Horde", + ["type"] = "enchant", + }, + [714] = { + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "enchant", + }, + [715] = { + ["id"] = "enchant.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "enchant", + }, + [716] = { + ["id"] = "enchant.stat_2954116742|25361", + ["text"] = "Allocates Resolute Reach", + ["type"] = "enchant", + }, + [717] = { + ["id"] = "enchant.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "enchant", + }, + [718] = { + ["id"] = "enchant.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "enchant", + }, + [719] = { + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "enchant", + }, + [720] = { + ["id"] = "enchant.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "enchant", + }, + [721] = { + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "enchant", + }, + [722] = { + ["id"] = "enchant.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "enchant", + }, + [723] = { + ["id"] = "enchant.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "enchant", + }, + [724] = { + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "enchant", + }, + [725] = { + ["id"] = "enchant.stat_2954116742|33400", + ["text"] = "Allocates Reverberating Parry", + ["type"] = "enchant", + }, + [726] = { + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "enchant", + }, + [727] = { + ["id"] = "enchant.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "enchant", + }, + [728] = { + ["id"] = "enchant.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "enchant", + }, + [729] = { + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "enchant", + }, + [730] = { + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "enchant", + }, + [731] = { + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "enchant", + }, + [732] = { + ["id"] = "enchant.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "enchant", + }, + [733] = { + ["id"] = "enchant.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "enchant", + }, + [734] = { + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "enchant", + }, + [735] = { + ["id"] = "enchant.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "enchant", + }, + [736] = { + ["id"] = "enchant.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "enchant", + }, + [737] = { + ["id"] = "enchant.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "enchant", + }, + [738] = { + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "enchant", + }, + [739] = { + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "enchant", + }, + [740] = { + ["id"] = "enchant.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "enchant", + }, + [741] = { + ["id"] = "enchant.stat_2954116742|35743", + ["text"] = "Allocates Saqawal's Hide", + ["type"] = "enchant", + }, + [742] = { + ["id"] = "enchant.stat_2954116742|62237", + ["text"] = "Allocates Saqawal's Talon", + ["type"] = "enchant", + }, + [743] = { + ["id"] = "enchant.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "enchant", + }, + [744] = { + ["id"] = "enchant.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "enchant", + }, + [745] = { + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "enchant", + }, + [746] = { + ["id"] = "enchant.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "enchant", + }, + [747] = { + ["id"] = "enchant.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "enchant", + }, + [748] = { + ["id"] = "enchant.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "enchant", + }, + [749] = { + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "enchant", + }, + [750] = { + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "enchant", + }, + [751] = { + ["id"] = "enchant.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "enchant", + }, + [752] = { + ["id"] = "enchant.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "enchant", + }, + [753] = { + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "enchant", + }, + [754] = { + ["id"] = "enchant.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "enchant", + }, + [755] = { + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "enchant", + }, + [756] = { + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "enchant", + }, + [757] = { + ["id"] = "enchant.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "enchant", + }, + [758] = { + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "enchant", + }, + [759] = { + ["id"] = "enchant.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "enchant", + }, + [760] = { + ["id"] = "enchant.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "enchant", + }, + [761] = { + ["id"] = "enchant.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "enchant", + }, + [762] = { + ["id"] = "enchant.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "enchant", + }, + [763] = { + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "enchant", + }, + [764] = { + ["id"] = "enchant.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "enchant", + }, + [765] = { + ["id"] = "enchant.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "enchant", + }, + [766] = { + ["id"] = "enchant.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "enchant", + }, + [767] = { + ["id"] = "enchant.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "enchant", + }, + [768] = { + ["id"] = "enchant.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", + ["type"] = "enchant", + }, + [769] = { + ["id"] = "enchant.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "enchant", + }, + [770] = { + ["id"] = "enchant.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "enchant", + }, + [771] = { + ["id"] = "enchant.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "enchant", + }, + [772] = { + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "enchant", + }, + [773] = { + ["id"] = "enchant.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "enchant", + }, + [774] = { + ["id"] = "enchant.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "enchant", + }, + [775] = { + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "enchant", + }, + [776] = { + ["id"] = "enchant.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "enchant", + }, + [777] = { + ["id"] = "enchant.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "enchant", + }, + [778] = { + ["id"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "enchant", + }, + [779] = { + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "enchant", + }, + [780] = { + ["id"] = "enchant.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "enchant", + }, + [781] = { + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "enchant", + }, + [782] = { + ["id"] = "enchant.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "enchant", + }, + [783] = { + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "enchant", + }, + [784] = { + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "enchant", + }, + [785] = { + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "enchant", + }, + [786] = { + ["id"] = "enchant.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "enchant", + }, + [787] = { + ["id"] = "enchant.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "enchant", + }, + [788] = { + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "enchant", + }, + [789] = { + ["id"] = "enchant.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "enchant", + }, + [790] = { + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "enchant", + }, + [791] = { + ["id"] = "enchant.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "enchant", + }, + [792] = { + ["id"] = "enchant.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "enchant", + }, + [793] = { + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "enchant", + }, + [794] = { + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "enchant", + }, + [795] = { + ["id"] = "enchant.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "enchant", + }, + [796] = { + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "enchant", + }, + [797] = { + ["id"] = "enchant.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "enchant", + }, + [798] = { + ["id"] = "enchant.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "enchant", + }, + [799] = { + ["id"] = "enchant.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "enchant", + }, + [800] = { + ["id"] = "enchant.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "enchant", + }, + [801] = { + ["id"] = "enchant.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "enchant", + }, + [802] = { + ["id"] = "enchant.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "enchant", + }, + [803] = { + ["id"] = "enchant.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "enchant", + }, + [804] = { + ["id"] = "enchant.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "enchant", + }, + [805] = { + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "enchant", + }, + [806] = { + ["id"] = "enchant.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "enchant", + }, + [807] = { + ["id"] = "enchant.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "enchant", + }, + [808] = { + ["id"] = "enchant.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "enchant", + }, + [809] = { + ["id"] = "enchant.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "enchant", + }, + [810] = { + ["id"] = "enchant.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "enchant", + }, + [811] = { + ["id"] = "enchant.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "enchant", + }, + [812] = { + ["id"] = "enchant.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "enchant", + }, + [813] = { + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "enchant", + }, + [814] = { + ["id"] = "enchant.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "enchant", + }, + [815] = { + ["id"] = "enchant.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "enchant", + }, + [816] = { + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "enchant", + }, + [817] = { + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "enchant", + }, + [818] = { + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "enchant", + }, + [819] = { + ["id"] = "enchant.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "enchant", + }, + [820] = { + ["id"] = "enchant.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "enchant", + }, + [821] = { + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "enchant", + }, + [822] = { + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "enchant", + }, + [823] = { + ["id"] = "enchant.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "enchant", + }, + [824] = { + ["id"] = "enchant.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "enchant", + }, + [825] = { + ["id"] = "enchant.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "enchant", + }, + [826] = { + ["id"] = "enchant.stat_2954116742|22726", + ["text"] = "Allocates Storm's Rebuke", + ["type"] = "enchant", + }, + [827] = { + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "enchant", + }, + [828] = { + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "enchant", + }, + [829] = { + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "enchant", + }, + [830] = { + ["id"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "enchant", + }, + [831] = { + ["id"] = "enchant.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "enchant", + }, + [832] = { + ["id"] = "enchant.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "enchant", + }, + [833] = { + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "enchant", + }, + [834] = { + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "enchant", + }, + [835] = { + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "enchant", + }, + [836] = { + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "enchant", + }, + [837] = { + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "enchant", + }, + [838] = { + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "enchant", + }, + [839] = { + ["id"] = "enchant.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "enchant", + }, + [840] = { + ["id"] = "enchant.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "enchant", + }, + [841] = { + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "enchant", + }, + [842] = { + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "enchant", + }, + [843] = { + ["id"] = "enchant.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "enchant", + }, + [844] = { + ["id"] = "enchant.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "enchant", + }, + [845] = { + ["id"] = "enchant.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "enchant", + }, + [846] = { + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "enchant", + }, + [847] = { + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "enchant", + }, + [848] = { + ["id"] = "enchant.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "enchant", + }, + [849] = { + ["id"] = "enchant.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "enchant", + }, + [850] = { + ["id"] = "enchant.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "enchant", + }, + [851] = { + ["id"] = "enchant.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "enchant", + }, + [852] = { + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "enchant", + }, + [853] = { + ["id"] = "enchant.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "enchant", + }, + [854] = { + ["id"] = "enchant.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "enchant", + }, + [855] = { + ["id"] = "enchant.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "enchant", + }, + [856] = { + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "enchant", + }, + [857] = { + ["id"] = "enchant.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "enchant", + }, + [858] = { + ["id"] = "enchant.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "enchant", + }, + [859] = { + ["id"] = "enchant.stat_2954116742|56666", + ["text"] = "Allocates Thaumaturgic Generator", + ["type"] = "enchant", + }, + [860] = { + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "enchant", + }, + [861] = { + ["id"] = "enchant.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "enchant", + }, + [862] = { + ["id"] = "enchant.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "enchant", + }, + [863] = { + ["id"] = "enchant.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "enchant", + }, + [864] = { + ["id"] = "enchant.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "enchant", + }, + [865] = { + ["id"] = "enchant.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "enchant", + }, + [866] = { + ["id"] = "enchant.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "enchant", + }, + [867] = { + ["id"] = "enchant.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "enchant", + }, + [868] = { + ["id"] = "enchant.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "enchant", + }, + [869] = { + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "enchant", + }, + [870] = { + ["id"] = "enchant.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "enchant", + }, + [871] = { + ["id"] = "enchant.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "enchant", + }, + [872] = { + ["id"] = "enchant.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "enchant", + }, + [873] = { + ["id"] = "enchant.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "enchant", + }, + [874] = { + ["id"] = "enchant.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "enchant", + }, + [875] = { + ["id"] = "enchant.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "enchant", + }, + [876] = { + ["id"] = "enchant.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "enchant", + }, + [877] = { + ["id"] = "enchant.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "enchant", + }, + [878] = { + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "enchant", + }, + [879] = { + ["id"] = "enchant.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "enchant", + }, + [880] = { + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "enchant", + }, + [881] = { + ["id"] = "enchant.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "enchant", + }, + [882] = { + ["id"] = "enchant.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "enchant", + }, + [883] = { + ["id"] = "enchant.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "enchant", + }, + [884] = { + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "enchant", + }, + [885] = { + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "enchant", + }, + [886] = { + ["id"] = "enchant.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "enchant", + }, + [887] = { + ["id"] = "enchant.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "enchant", + }, + [888] = { + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "enchant", + }, + [889] = { + ["id"] = "enchant.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "enchant", + }, + [890] = { + ["id"] = "enchant.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "enchant", + }, + [891] = { + ["id"] = "enchant.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "enchant", + }, + [892] = { + ["id"] = "enchant.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "enchant", + }, + [893] = { + ["id"] = "enchant.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "enchant", + }, + [894] = { + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "enchant", + }, + [895] = { + ["id"] = "enchant.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "enchant", + }, + [896] = { + ["id"] = "enchant.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "enchant", + }, + [897] = { + ["id"] = "enchant.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "enchant", + }, + [898] = { + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "enchant", + }, + [899] = { + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "enchant", + }, + [900] = { + ["id"] = "enchant.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "enchant", + }, + [901] = { + ["id"] = "enchant.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "enchant", + }, + [902] = { + ["id"] = "enchant.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "enchant", + }, + [903] = { + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "enchant", + }, + [904] = { + ["id"] = "enchant.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "enchant", + }, + [905] = { + ["id"] = "enchant.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "enchant", + }, + [906] = { + ["id"] = "enchant.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "enchant", + }, + [907] = { + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "enchant", + }, + [908] = { + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "enchant", + }, + [909] = { + ["id"] = "enchant.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "enchant", + }, + [910] = { + ["id"] = "enchant.stat_2954116742|10169", + ["text"] = "Allocates Unfettered", + ["type"] = "enchant", + }, + [911] = { + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "enchant", + }, + [912] = { + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "enchant", + }, + [913] = { + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "enchant", + }, + [914] = { + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "enchant", + }, + [915] = { + ["id"] = "enchant.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "enchant", + }, + [916] = { + ["id"] = "enchant.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "enchant", + }, + [917] = { + ["id"] = "enchant.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "enchant", + }, + [918] = { + ["id"] = "enchant.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "enchant", + }, + [919] = { + ["id"] = "enchant.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "enchant", + }, + [920] = { + ["id"] = "enchant.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", + ["type"] = "enchant", + }, + [921] = { + ["id"] = "enchant.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "enchant", + }, + [922] = { + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "enchant", + }, + [923] = { + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "enchant", + }, + [924] = { + ["id"] = "enchant.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "enchant", + }, + [925] = { + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "enchant", + }, + [926] = { + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "enchant", + }, + [927] = { + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "enchant", + }, + [928] = { + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "enchant", + }, + [929] = { + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "enchant", + }, + [930] = { + ["id"] = "enchant.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "enchant", + }, + [931] = { + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "enchant", + }, + [932] = { + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "enchant", + }, + [933] = { + ["id"] = "enchant.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "enchant", + }, + [934] = { + ["id"] = "enchant.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "enchant", + }, + [935] = { + ["id"] = "enchant.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "enchant", + }, + [936] = { + ["id"] = "enchant.stat_2954116742|31955", + ["text"] = "Allocates Voll's Protection", + ["type"] = "enchant", + }, + [937] = { + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "enchant", + }, + [938] = { + ["id"] = "enchant.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "enchant", + }, + [939] = { + ["id"] = "enchant.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "enchant", + }, + [940] = { + ["id"] = "enchant.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "enchant", + }, + [941] = { + ["id"] = "enchant.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "enchant", + }, + [942] = { + ["id"] = "enchant.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "enchant", + }, + [943] = { + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "enchant", + }, + [944] = { + ["id"] = "enchant.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "enchant", + }, + [945] = { + ["id"] = "enchant.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "enchant", + }, + [946] = { + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "enchant", + }, + [947] = { + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "enchant", + }, + [948] = { + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "enchant", + }, + [949] = { + ["id"] = "enchant.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "enchant", + }, + [950] = { + ["id"] = "enchant.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "enchant", + }, + [951] = { + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "enchant", + }, + [952] = { + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "enchant", + }, + [953] = { + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "enchant", + }, + [954] = { + ["id"] = "enchant.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "enchant", + }, + [955] = { + ["id"] = "enchant.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "enchant", + }, + [956] = { + ["id"] = "enchant.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "enchant", + }, + [957] = { + ["id"] = "enchant.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "enchant", + }, + [958] = { + ["id"] = "enchant.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "enchant", + }, + [959] = { + ["id"] = "enchant.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "enchant", + }, + [960] = { + ["id"] = "enchant.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "enchant", + }, + [961] = { + ["id"] = "enchant.stat_2954116742|11184", + ["text"] = "Allocates Zarokh's Gift", + ["type"] = "enchant", + }, + [962] = { + ["id"] = "enchant.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "enchant", + }, + [963] = { + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", + }, + [964] = { + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", + }, + [965] = { + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", + }, + [966] = { + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", + }, + [967] = { + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "enchant", + }, + [968] = { + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", + }, + [969] = { + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + [970] = { + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + [971] = { + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", + }, + [972] = { + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", + }, + [973] = { + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", + }, + [974] = { + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "enchant", + }, + [975] = { + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + [976] = { + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", + }, + [977] = { + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + [978] = { + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "enchant", + }, + [979] = { + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + [980] = { + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + [981] = { + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", + }, + [982] = { + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "enchant", + }, + [983] = { + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", + }, + [984] = { + ["id"] = "enchant.stat_1715784068", + ["text"] = "Players in Area are #% Delirious", + ["type"] = "enchant", + }, + [985] = { + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "enchant", + }, + [986] = { + ["id"] = "enchant.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["type"] = "enchant", + }, + [987] = { + ["id"] = "enchant.stat_3732878551", + ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["type"] = "enchant", + }, + [988] = { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + [989] = { + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", + ["type"] = "enchant", + }, + [990] = { + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["type"] = "enchant", + }, + [991] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", + }, + }, + ["id"] = "enchant", + ["label"] = "Enchant", + }, + [7] = { + ["entries"] = { + [1] = { + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "augment", + }, + [2] = { + ["id"] = "rune.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "augment", + }, + [3] = { + ["id"] = "rune.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "augment", + }, + [4] = { + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + [5] = { + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "augment", + }, + [6] = { + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + [7] = { + ["id"] = "rune.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "augment", + }, + [8] = { + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", + }, + [9] = { + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", + }, + [10] = { + ["id"] = "rune.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "augment", + }, + [11] = { + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", + }, + [12] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + [13] = { + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + [14] = { + ["id"] = "rune.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + [15] = { + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + [16] = { + ["id"] = "rune.stat_610569665", + ["text"] = "# to Spirit per 2 Levels", + ["type"] = "augment", + }, + [17] = { + ["id"] = "rune.stat_1073847159", + ["text"] = "# to Spirit per Idol socketed in your Equipment", + ["type"] = "augment", + }, + [18] = { + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + [19] = { + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", + }, + [20] = { + ["id"] = "rune.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "augment", + }, + [21] = { + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", + }, + [22] = { + ["id"] = "rune.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "augment", + }, + [23] = { + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", + }, + [24] = { + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + [25] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", + }, + [26] = { + ["id"] = "rune.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "augment", + }, + [27] = { + ["id"] = "rune.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "augment", + }, + [28] = { + ["id"] = "rune.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "augment", + }, + [29] = { + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", + }, + [30] = { + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + [31] = { + ["id"] = "rune.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "augment", + }, + [32] = { + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", + }, + [33] = { + ["id"] = "rune.stat_2328443419", + ["text"] = "#% chance to create an additional Remnant", + ["type"] = "augment", + }, + [34] = { + ["id"] = "rune.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["type"] = "augment", + }, + [35] = { + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", + }, + [36] = { + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "augment", + }, + [37] = { + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", + }, + [38] = { + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "augment", + }, + [39] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + [40] = { + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", + }, + [41] = { + ["id"] = "rune.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "augment", + }, + [42] = { + ["id"] = "rune.stat_1392112423", + ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", + ["type"] = "augment", + }, + [43] = { + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + [44] = { + ["id"] = "rune.stat_2829985691", + ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", + ["type"] = "augment", + }, + [45] = { + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", + }, + [46] = { + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + [47] = { + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", + }, + [48] = { + ["id"] = "rune.stat_3203854378", + ["text"] = "#% increased Attack Speed if you have Blocked Recently", + ["type"] = "augment", + }, + [49] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", + }, + [50] = { + ["id"] = "rune.stat_3087034595", + ["text"] = "#% increased Block chance while your Companion is in your Presence", + ["type"] = "augment", + }, + [51] = { + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "augment", + }, + [52] = { + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", + }, + [53] = { + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + [54] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + [55] = { + ["id"] = "rune.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "augment", + }, + [56] = { + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + [57] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + [58] = { + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", + }, + [59] = { + ["id"] = "rune.stat_3151560620", + ["text"] = "#% increased Damage per each different Companion in your Presence", + ["type"] = "augment", + }, + [60] = { + ["id"] = "rune.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "augment", + }, + [61] = { + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", + }, + [62] = { + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + [63] = { + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", + }, + [64] = { + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", + }, + [65] = { + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "augment", + }, + [66] = { + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "augment", + }, + [67] = { + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", + }, + [68] = { + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "augment", + }, + [69] = { + ["id"] = "rune.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "augment", + }, + [70] = { + ["id"] = "rune.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "augment", + }, + [71] = { + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", + }, + [72] = { + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + [73] = { + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", + }, + [74] = { + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", + }, + [75] = { + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + [76] = { + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + [77] = { + ["id"] = "rune.stat_553018427", + ["text"] = "#% increased Mana Cost Efficiency of Command Skills", + ["type"] = "augment", + }, + [78] = { + ["id"] = "rune.stat_1779262102", + ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [79] = { + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "augment", + }, + [80] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", + }, + [81] = { + ["id"] = "rune.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "augment", + }, + [82] = { + ["id"] = "rune.stat_2703838669", + ["text"] = "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%Other Modifiers to Movement Speed except for Sprinting do not apply", + ["type"] = "augment", + }, + [83] = { + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", + }, + [84] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + [85] = { + ["id"] = "rune.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "augment", + }, + [86] = { + ["id"] = "rune.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "augment", + }, + [87] = { + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", + }, + [88] = { + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + [89] = { + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + [90] = { + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + [91] = { + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", + }, + [92] = { + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + [93] = { + ["id"] = "rune.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "augment", + }, + [94] = { + ["id"] = "rune.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "augment", + }, + [95] = { + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", + }, + [96] = { + ["id"] = "rune.stat_4065951768", + ["text"] = "#% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + [97] = { + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + [98] = { + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + [99] = { + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", + }, + [100] = { + ["id"] = "rune.stat_4063732952", + ["text"] = "#% increased Spell Damage while your Companion is in your Presence", + ["type"] = "augment", + }, + [101] = { + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + [102] = { + ["id"] = "rune.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + [103] = { + ["id"] = "rune.stat_751944209", + ["text"] = "#% increased Stun Threshold if you've been Stunned Recently", + ["type"] = "augment", + }, + [104] = { + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", + ["type"] = "augment", + }, + [105] = { + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", + }, + [106] = { + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", + }, + [107] = { + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", + }, + [108] = { + ["id"] = "rune.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + [109] = { + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "augment", + }, + [110] = { + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", + }, + [111] = { + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", + }, + [112] = { + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", + }, + [113] = { + ["id"] = "rune.stat_762761075", + ["text"] = "#% less Mana Regeneration Rate", + ["type"] = "augment", + }, + [114] = { + ["id"] = "rune.stat_1020945697", + ["text"] = "#% less maximum Life", + ["type"] = "augment", + }, + [115] = { + ["id"] = "rune.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "augment", + }, + [116] = { + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", + }, + [117] = { + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", + }, + [118] = { + ["id"] = "rune.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "augment", + }, + [119] = { + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", + ["type"] = "augment", + }, + [120] = { + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", + }, + [121] = { + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + [122] = { + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + [123] = { + ["id"] = "rune.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", + ["type"] = "augment", + }, + [124] = { + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", + }, + [125] = { + ["id"] = "rune.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + [126] = { + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", + }, + [127] = { + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", + }, + [128] = { + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "augment", + }, + [129] = { + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", + }, + [130] = { + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "augment", + }, + [131] = { + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "augment", + }, + [132] = { + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", + }, + [133] = { + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "augment", + }, + [134] = { + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "augment", + }, + [135] = { + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + [136] = { + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "augment", + }, + [137] = { + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "augment", + }, + [138] = { + ["id"] = "rune.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "augment", + }, + [139] = { + ["id"] = "rune.stat_282990844", + ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", + ["type"] = "augment", + }, + [140] = { + ["id"] = "rune.stat_2838678452", + ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", + ["type"] = "augment", + }, + [141] = { + ["id"] = "rune.stat_162036024", + ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", + ["type"] = "augment", + }, + [142] = { + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["type"] = "augment", + }, + [143] = { + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", + }, + [144] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + [145] = { + ["id"] = "rune.stat_3734640451", + ["text"] = "Adds # to # Cold Damage against Chilled Enemies", + ["type"] = "augment", + }, + [146] = { + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + [147] = { + ["id"] = "rune.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", + ["type"] = "augment", + }, + [148] = { + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", + }, + [149] = { + ["id"] = "rune.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "augment", + }, + [150] = { + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + [151] = { + ["id"] = "rune.stat_3814102597", + ["text"] = "All damage taken bypasses Runic Ward", + ["type"] = "augment", + }, + [152] = { + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "augment", + }, + [153] = { + ["id"] = "rune.stat_1911097163", + ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", + ["type"] = "augment", + }, + [154] = { + ["id"] = "rune.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "augment", + }, + [155] = { + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", + }, + [156] = { + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", + }, + [157] = { + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", + }, + [158] = { + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", + }, + [159] = { + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", + }, + [160] = { + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + [161] = { + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", + }, + [162] = { + ["id"] = "rune.stat_632743438", + ["text"] = "Allies in your Presence have #% increased Movement Speed", + ["type"] = "augment", + }, + [163] = { + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [164] = { + ["id"] = "rune.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "augment", + }, + [165] = { + ["id"] = "rune.stat_2608793552", + ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", + ["type"] = "augment", + }, + [166] = { + ["id"] = "rune.stat_3035971497", + ["text"] = "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", + ["type"] = "augment", + }, + [167] = { + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", + }, + [168] = { + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", + }, + [169] = { + ["id"] = "rune.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "augment", + }, + [170] = { + ["id"] = "rune.stat_769693350", + ["text"] = "Bonded: # Maximum Life per Level", + ["type"] = "augment", + }, + [171] = { + ["id"] = "rune.stat_2573124363", + ["text"] = "Bonded: # to Armour", + ["type"] = "augment", + }, + [172] = { + ["id"] = "rune.stat_3533065815", + ["text"] = "Bonded: # to Evasion Rating", + ["type"] = "augment", + }, + [173] = { + ["id"] = "rune.stat_243313994", + ["text"] = "Bonded: # to Level of all Attack Skills", + ["type"] = "augment", + }, + [174] = { + ["id"] = "rune.stat_2339851060", + ["text"] = "Bonded: # to Maximum Endurance Charges", + ["type"] = "augment", + }, + [175] = { + ["id"] = "rune.stat_3986710072", + ["text"] = "Bonded: # to Maximum Frenzy Charges", + ["type"] = "augment", + }, + [176] = { + ["id"] = "rune.stat_921688168", + ["text"] = "Bonded: # to Maximum Power Charges", + ["type"] = "augment", + }, + [177] = { + ["id"] = "rune.stat_827242569", + ["text"] = "Bonded: # to maximum Energy Shield", + ["type"] = "augment", + }, + [178] = { + ["id"] = "rune.stat_2280525771", + ["text"] = "Bonded: # to maximum Life", + ["type"] = "augment", + }, + [179] = { + ["id"] = "rune.stat_2926029365", + ["text"] = "Bonded: # to maximum Mana", + ["type"] = "augment", + }, + [180] = { + ["id"] = "rune.stat_451260031", + ["text"] = "Bonded: # to maximum number of Elemental Infusions", + ["type"] = "augment", + }, + [181] = { + ["id"] = "rune.stat_3291917242", + ["text"] = "Bonded: #% chance for Charms you use to not consume Charges", + ["type"] = "augment", + }, + [182] = { + ["id"] = "rune.stat_2134854700", + ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + ["type"] = "augment", + }, + [183] = { + ["id"] = "rune.stat_1712188793", + ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + ["type"] = "augment", + }, + [184] = { + ["id"] = "rune.stat_3909696841", + ["text"] = "Bonded: #% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "augment", + }, + [185] = { + ["id"] = "rune.stat_1350120957", + ["text"] = "Bonded: #% faster Curse Activation", + ["type"] = "augment", + }, + [186] = { + ["id"] = "rune.stat_201058524", + ["text"] = "Bonded: #% increased Archon Buff duration", + ["type"] = "augment", + }, + [187] = { + ["id"] = "rune.stat_3724971246", + ["text"] = "Bonded: #% increased Area of Effect for Attacks", + ["type"] = "augment", + }, + [188] = { + ["id"] = "rune.stat_3854332662", + ["text"] = "Bonded: #% increased Area of Effect of Curses", + ["type"] = "augment", + }, + [189] = { + ["id"] = "rune.stat_51757548", + ["text"] = "Bonded: #% increased Armour and Evasion Rating when on Low Life", + ["type"] = "augment", + }, + [190] = { + ["id"] = "rune.stat_851475033", + ["text"] = "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + [191] = { + ["id"] = "rune.stat_3037356641", + ["text"] = "Bonded: #% increased Armour if you've consumed an Endurance Charge Recently", + ["type"] = "augment", + }, + [192] = { + ["id"] = "rune.stat_674141348", + ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", + ["type"] = "augment", + }, + [193] = { + ["id"] = "rune.stat_3414796717", + ["text"] = "Bonded: #% increased Attack Speed", + ["type"] = "augment", + }, + [194] = { + ["id"] = "rune.stat_3837226732", + ["text"] = "Bonded: #% increased Attack Speed while missing Runic Ward", + ["type"] = "augment", + }, + [195] = { + ["id"] = "rune.stat_1777925108", + ["text"] = "Bonded: #% increased Attack Speed while your Companion is in your Presence", + ["type"] = "augment", + }, + [196] = { + ["id"] = "rune.stat_678691134", + ["text"] = "Bonded: #% increased Blind Effect", + ["type"] = "augment", + }, + [197] = { + ["id"] = "rune.stat_477534953", + ["text"] = "Bonded: #% increased Block chance", + ["type"] = "augment", + }, + [198] = { + ["id"] = "rune.stat_227512798", + ["text"] = "Bonded: #% increased Chaos Damage", + ["type"] = "augment", + }, + [199] = { + ["id"] = "rune.stat_763465498", + ["text"] = "Bonded: #% increased Charm Charges gained", + ["type"] = "augment", + }, + [200] = { + ["id"] = "rune.stat_2233558630", + ["text"] = "Bonded: #% increased Cold Damage", + ["type"] = "augment", + }, + [201] = { + ["id"] = "rune.stat_232299587", + ["text"] = "Bonded: #% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + [202] = { + ["id"] = "rune.stat_4221147896", + ["text"] = "Bonded: #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + [203] = { + ["id"] = "rune.stat_2651867031", + ["text"] = "Bonded: #% increased Critical Hit Chance", + ["type"] = "augment", + }, + [204] = { + ["id"] = "rune.stat_3311629379", + ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", + ["type"] = "augment", + }, + [205] = { + ["id"] = "rune.stat_2453678274", + ["text"] = "Bonded: #% increased Crossbow Reload Speed", + ["type"] = "augment", + }, + [206] = { + ["id"] = "rune.stat_217649179", + ["text"] = "Bonded: #% increased Curse Magnitudes", + ["type"] = "augment", + }, + [207] = { + ["id"] = "rune.stat_3823333703", + ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", + ["type"] = "augment", + }, + [208] = { + ["id"] = "rune.stat_95238288", + ["text"] = "Bonded: #% increased Damage for each type of Elemental Ailment on Enemy", + ["type"] = "augment", + }, + [209] = { + ["id"] = "rune.stat_3412619569", + ["text"] = "Bonded: #% increased Damage while Shapeshifted", + ["type"] = "augment", + }, + [210] = { + ["id"] = "rune.stat_3835589934", + ["text"] = "Bonded: #% increased Damage while your Companion is in your Presence", + ["type"] = "augment", + }, + [211] = { + ["id"] = "rune.stat_2986637363", + ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "augment", + }, + [212] = { + ["id"] = "rune.stat_2546200564", + ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", + ["type"] = "augment", + }, + [213] = { + ["id"] = "rune.stat_1279298634", + ["text"] = "Bonded: #% increased Effect of Non-Damaging Ailments on you", + ["type"] = "augment", + }, + [214] = { + ["id"] = "rune.stat_4128954176", + ["text"] = "Bonded: #% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + [215] = { + ["id"] = "rune.stat_3037261703", + ["text"] = "Bonded: #% increased Elemental Damage", + ["type"] = "augment", + }, + [216] = { + ["id"] = "rune.stat_4224773381", + ["text"] = "Bonded: #% increased Endurance Charge Duration", + ["type"] = "augment", + }, + [217] = { + ["id"] = "rune.stat_4129869957", + ["text"] = "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "augment", + }, + [218] = { + ["id"] = "rune.stat_2959554008", + ["text"] = "Bonded: #% increased Evasion Rating if you've consumed a Frenzy Charge Recently", + ["type"] = "augment", + }, + [219] = { + ["id"] = "rune.stat_3378643287", + ["text"] = "Bonded: #% increased Exposure Effect", + ["type"] = "augment", + }, + [220] = { + ["id"] = "rune.stat_2502507413", + ["text"] = "Bonded: #% increased Fire Damage", + ["type"] = "augment", + }, + [221] = { + ["id"] = "rune.stat_1817052494", + ["text"] = "Bonded: #% increased Freeze Buildup", + ["type"] = "augment", + }, + [222] = { + ["id"] = "rune.stat_457982334", + ["text"] = "Bonded: #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + [223] = { + ["id"] = "rune.stat_155735928", + ["text"] = "Bonded: #% increased Glory generation", + ["type"] = "augment", + }, + [224] = { + ["id"] = "rune.stat_831559873", + ["text"] = "Bonded: #% increased Guard gained", + ["type"] = "augment", + }, + [225] = { + ["id"] = "rune.stat_1857162058", + ["text"] = "Bonded: #% increased Ignite Magnitude", + ["type"] = "augment", + }, + [226] = { + ["id"] = "rune.stat_1112792773", + ["text"] = "Bonded: #% increased Immobilisation buildup", + ["type"] = "augment", + }, + [227] = { + ["id"] = "rune.stat_2122116143", + ["text"] = "Bonded: #% increased Life Recovery Rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [228] = { + ["id"] = "rune.stat_2051864330", + ["text"] = "Bonded: #% increased Life Regeneration rate", + ["type"] = "augment", + }, + [229] = { + ["id"] = "rune.stat_2410766865", + ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", + ["type"] = "augment", + }, + [230] = { + ["id"] = "rune.stat_4168500604", + ["text"] = "Bonded: #% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + [231] = { + ["id"] = "rune.stat_2589309582", + ["text"] = "Bonded: #% increased Lightning Damage", + ["type"] = "augment", + }, + [232] = { + ["id"] = "rune.stat_3144895835", + ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", + ["type"] = "augment", + }, + [233] = { + ["id"] = "rune.stat_3891661462", + ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + [234] = { + ["id"] = "rune.stat_2430860292", + ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", + ["type"] = "augment", + }, + [235] = { + ["id"] = "rune.stat_2336012075", + ["text"] = "Bonded: #% increased Mana Cost Efficiency", + ["type"] = "augment", + }, + [236] = { + ["id"] = "rune.stat_532897212", + ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", + ["type"] = "augment", + }, + [237] = { + ["id"] = "rune.stat_2352183092", + ["text"] = "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [238] = { + ["id"] = "rune.stat_4106964676", + ["text"] = "Bonded: #% increased Movement Speed", + ["type"] = "augment", + }, + [239] = { + ["id"] = "rune.stat_3842722415", + ["text"] = "Bonded: #% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + [240] = { + ["id"] = "rune.stat_3126632036", + ["text"] = "Bonded: #% increased Parry Range", + ["type"] = "augment", + }, + [241] = { + ["id"] = "rune.stat_2418344131", + ["text"] = "Bonded: #% increased Projectile Damage", + ["type"] = "augment", + }, + [242] = { + ["id"] = "rune.stat_1631975646", + ["text"] = "Bonded: #% increased Projectile Speed", + ["type"] = "augment", + }, + [243] = { + ["id"] = "rune.stat_3898665772", + ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + [244] = { + ["id"] = "rune.stat_2729035954", + ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", + ["type"] = "augment", + }, + [245] = { + ["id"] = "rune.stat_1299166504", + ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", + ["type"] = "augment", + }, + [246] = { + ["id"] = "rune.stat_1342402057", + ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + [247] = { + ["id"] = "rune.stat_1751756891", + ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", + ["type"] = "augment", + }, + [248] = { + ["id"] = "rune.stat_1396011622", + ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", + ["type"] = "augment", + }, + [249] = { + ["id"] = "rune.stat_2530800730", + ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + [250] = { + ["id"] = "rune.stat_144568384", + ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", + ["type"] = "augment", + }, + [251] = { + ["id"] = "rune.stat_165746512", + ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + [252] = { + ["id"] = "rune.stat_2012253422", + ["text"] = "Bonded: #% increased Spirit", + ["type"] = "augment", + }, + [253] = { + ["id"] = "rune.stat_3435915371", + ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", + ["type"] = "augment", + }, + [254] = { + ["id"] = "rune.stat_3038857346", + ["text"] = "Bonded: #% increased Stun Buildup", + ["type"] = "augment", + }, + [255] = { + ["id"] = "rune.stat_1756854510", + ["text"] = "Bonded: #% increased Stun Recovery", + ["type"] = "augment", + }, + [256] = { + ["id"] = "rune.stat_466741396", + ["text"] = "Bonded: #% increased Stun Threshold", + ["type"] = "augment", + }, + [257] = { + ["id"] = "rune.stat_597420223", + ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", + ["type"] = "augment", + }, + [258] = { + ["id"] = "rune.stat_3266426611", + ["text"] = "Bonded: #% increased Thorns damage", + ["type"] = "augment", + }, + [259] = { + ["id"] = "rune.stat_542243093", + ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", + ["type"] = "augment", + }, + [260] = { + ["id"] = "rune.stat_1984345909", + ["text"] = "Bonded: #% increased Withered Magnitude", + ["type"] = "augment", + }, + [261] = { + ["id"] = "rune.stat_3331247603", + ["text"] = "Bonded: #% increased amount of Life Leeched", + ["type"] = "augment", + }, + [262] = { + ["id"] = "rune.stat_1236190486", + ["text"] = "Bonded: #% increased effect of Archon Buffs on you", + ["type"] = "augment", + }, + [263] = { + ["id"] = "rune.stat_1039491398", + ["text"] = "Bonded: #% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + [264] = { + ["id"] = "rune.stat_3745435177", + ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", + ["type"] = "augment", + }, + [265] = { + ["id"] = "rune.stat_2246411426", + ["text"] = "Bonded: #% increased maximum Life", + ["type"] = "augment", + }, + [266] = { + ["id"] = "rune.stat_1586906534", + ["text"] = "Bonded: #% increased maximum Mana", + ["type"] = "augment", + }, + [267] = { + ["id"] = "rune.stat_3634438849", + ["text"] = "Bonded: #% increased maximum Runic Ward", + ["type"] = "augment", + }, + [268] = { + ["id"] = "rune.stat_826685275", + ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + ["type"] = "augment", + }, + [269] = { + ["id"] = "rune.stat_264750496", + ["text"] = "Bonded: #% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + [270] = { + ["id"] = "rune.stat_2100249038", + ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", + ["type"] = "augment", + }, + [271] = { + ["id"] = "rune.stat_2561960218", + ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + [272] = { + ["id"] = "rune.stat_1441491952", + ["text"] = "Bonded: #% reduced Shock duration on you", + ["type"] = "augment", + }, + [273] = { + ["id"] = "rune.stat_3351086592", + ["text"] = "Bonded: #% to Chaos Resistance", + ["type"] = "augment", + }, + [274] = { + ["id"] = "rune.stat_3448627618", + ["text"] = "Bonded: #% to Cold Resistance", + ["type"] = "augment", + }, + [275] = { + ["id"] = "rune.stat_3294435116", + ["text"] = "Bonded: #% to Lightning Resistance", + ["type"] = "augment", + }, + [276] = { + ["id"] = "rune.stat_4042480703", + ["text"] = "Bonded: #% to Maximum Cold Resistance", + ["type"] = "augment", + }, + [277] = { + ["id"] = "rune.stat_408302348", + ["text"] = "Bonded: #% to Maximum Fire Resistance", + ["type"] = "augment", + }, + [278] = { + ["id"] = "rune.stat_3788647247", + ["text"] = "Bonded: #% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + [279] = { + ["id"] = "rune.stat_1134865274", + ["text"] = "Bonded: #% to Quality of all Skills", + ["type"] = "augment", + }, + [280] = { + ["id"] = "rune.stat_953010920", + ["text"] = "Bonded: #% to all Elemental Resistances", + ["type"] = "augment", + }, + [281] = { + ["id"] = "rune.stat_1404850498", + ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", + ["type"] = "augment", + }, + [282] = { + ["id"] = "rune.stat_859452080", + ["text"] = "Bonded: #% to maximum Block chance", + ["type"] = "augment", + }, + [283] = { + ["id"] = "rune.stat_103837384", + ["text"] = "Bonded: 1% more Runic Ward Regeneration rate per #% of maximum Runic Ward lost from Hits Recently, up to 100% more", + ["type"] = "augment", + }, + [284] = { + ["id"] = "rune.stat_3308150554", + ["text"] = "Bonded: Adds # to # Fire damage to Attacks", + ["type"] = "augment", + }, + [285] = { + ["id"] = "rune.stat_3738367433", + ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + [286] = { + ["id"] = "rune.stat_858934954", + ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + [287] = { + ["id"] = "rune.stat_1799351208", + ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", + ["type"] = "augment", + }, + [288] = { + ["id"] = "rune.stat_975988108", + ["text"] = "Bonded: Archon recovery period expires #% faster", + ["type"] = "augment", + }, + [289] = { + ["id"] = "rune.stat_859085781", + ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", + ["type"] = "augment", + }, + [290] = { + ["id"] = "rune.stat_4012965551", + ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", + ["type"] = "augment", + }, + [291] = { + ["id"] = "rune.stat_1083521623", + ["text"] = "Bonded: Break #% increased Armour", + ["type"] = "augment", + }, + [292] = { + ["id"] = "rune.stat_3990135792", + ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "augment", + }, + [293] = { + ["id"] = "rune.stat_2804691275", + ["text"] = "Bonded: Buffs on you expire #% faster", + ["type"] = "augment", + }, + [294] = { + ["id"] = "rune.stat_1568578715", + ["text"] = "Bonded: Charms gain # charge per Second", + ["type"] = "augment", + }, + [295] = { + ["id"] = "rune.stat_1816212773", + ["text"] = "Bonded: Companions have #% increased Area of Effect", + ["type"] = "augment", + }, + [296] = { + ["id"] = "rune.stat_750452124", + ["text"] = "Bonded: Companions have #% increased maximum Life", + ["type"] = "augment", + }, + [297] = { + ["id"] = "rune.stat_2342427527", + ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", + ["type"] = "augment", + }, + [298] = { + ["id"] = "rune.stat_2691854696", + ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", + ["type"] = "augment", + }, + [299] = { + ["id"] = "rune.stat_807013157", + ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", + ["type"] = "augment", + }, + [300] = { + ["id"] = "rune.stat_1482283017", + ["text"] = "Bonded: Fissure Skills have +# to Limit", + ["type"] = "augment", + }, + [301] = { + ["id"] = "rune.stat_3816212813", + ["text"] = "Bonded: Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + [302] = { + ["id"] = "rune.stat_635535560", + ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", + ["type"] = "augment", + }, + [303] = { + ["id"] = "rune.stat_1570901920", + ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", + ["type"] = "augment", + }, + [304] = { + ["id"] = "rune.stat_2269618934", + ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", + ["type"] = "augment", + }, + [305] = { + ["id"] = "rune.stat_1419386315", + ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [306] = { + ["id"] = "rune.stat_2001460689", + ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [307] = { + ["id"] = "rune.stat_1256853273", + ["text"] = "Bonded: Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + [308] = { + ["id"] = "rune.stat_4058552370", + ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "augment", + }, + [309] = { + ["id"] = "rune.stat_1773391344", + ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", + ["type"] = "augment", + }, + [310] = { + ["id"] = "rune.stat_4254029169", + ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", + ["type"] = "augment", + }, + [311] = { + ["id"] = "rune.stat_839375491", + ["text"] = "Bonded: Minions Revive #% faster", + ["type"] = "augment", + }, + [312] = { + ["id"] = "rune.stat_1728593484", + ["text"] = "Bonded: Minions deal #% increased Damage", + ["type"] = "augment", + }, + [313] = { + ["id"] = "rune.stat_129783399", + ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", + ["type"] = "augment", + }, + [314] = { + ["id"] = "rune.stat_3449499156", + ["text"] = "Bonded: Minions have #% increased Area of Effect", + ["type"] = "augment", + }, + [315] = { + ["id"] = "rune.stat_1611856026", + ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", + ["type"] = "augment", + }, + [316] = { + ["id"] = "rune.stat_834058335", + ["text"] = "Bonded: Minions have #% increased Movement Speed", + ["type"] = "augment", + }, + [317] = { + ["id"] = "rune.stat_901007505", + ["text"] = "Bonded: Minions have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [318] = { + ["id"] = "rune.stat_3793026369", + ["text"] = "Bonded: Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["type"] = "augment", + }, + [319] = { + ["id"] = "rune.stat_1597408611", + ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + [320] = { + ["id"] = "rune.stat_1528013281", + ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "augment", + }, + [321] = { + ["id"] = "rune.stat_2905013875", + ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", + ["type"] = "augment", + }, + [322] = { + ["id"] = "rune.stat_1823959929", + ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", + ["type"] = "augment", + }, + [323] = { + ["id"] = "rune.stat_2420303482", + ["text"] = "Bonded: Regenerate # Runic Ward per second", + ["type"] = "augment", + }, + [324] = { + ["id"] = "rune.stat_3134782172", + ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", + ["type"] = "augment", + }, + [325] = { + ["id"] = "rune.stat_1981392722", + ["text"] = "Bonded: Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + [326] = { + ["id"] = "rune.stat_3373098634", + ["text"] = "Bonded: Remnants can be collected from #% further away", + ["type"] = "augment", + }, + [327] = { + ["id"] = "rune.stat_3227486464", + ["text"] = "Bonded: Remnants you create have #% increased effect", + ["type"] = "augment", + }, + [328] = { + ["id"] = "rune.stat_3286003349", + ["text"] = "Bonded: Storm Skills have +# to Limit", + ["type"] = "augment", + }, + [329] = { + ["id"] = "rune.stat_864484981", + ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "augment", + }, + [330] = { + ["id"] = "rune.stat_2248594298", + ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", + ["type"] = "augment", + }, + [331] = { + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", + }, + [332] = { + ["id"] = "rune.stat_1963398329", + ["text"] = "Can have # additional Crafted Modifier", + ["type"] = "augment", + }, + [333] = { + ["id"] = "rune.stat_1770091046", + ["text"] = "Can roll Berserking modifiers", + ["type"] = "augment", + }, + [334] = { + ["id"] = "rune.stat_3132681620", + ["text"] = "Can roll Chronomancy modifiers", + ["type"] = "augment", + }, + [335] = { + ["id"] = "rune.stat_2547063279", + ["text"] = "Can roll Decay modifiers", + ["type"] = "augment", + }, + [336] = { + ["id"] = "rune.stat_1676950499", + ["text"] = "Can roll Destruction modifiers", + ["type"] = "augment", + }, + [337] = { + ["id"] = "rune.stat_201332984", + ["text"] = "Can roll Marksman modifiers", + ["type"] = "augment", + }, + [338] = { + ["id"] = "rune.stat_1927467683", + ["text"] = "Can roll Soul modifiers", + ["type"] = "augment", + }, + [339] = { + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", + }, + [340] = { + ["id"] = "rune.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "augment", + }, + [341] = { + ["id"] = "rune.stat_2882351629", + ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", + ["type"] = "augment", + }, + [342] = { + ["id"] = "rune.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "augment", + }, + [343] = { + ["id"] = "rune.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "augment", + }, + [344] = { + ["id"] = "rune.stat_4200448078", + ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + [345] = { + ["id"] = "rune.stat_2652394701", + ["text"] = "Companions in your Presence gain # Rage on hit", + ["type"] = "augment", + }, + [346] = { + ["id"] = "rune.stat_1539508682", + ["text"] = "Companions in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [347] = { + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", + }, + [348] = { + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", + }, + [349] = { + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", + }, + [350] = { + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["type"] = "augment", + }, + [351] = { + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", + }, + [352] = { + ["id"] = "rune.stat_1933674044", + ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", + ["type"] = "augment", + }, + [353] = { + ["id"] = "rune.stat_426207520", + ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", + ["type"] = "augment", + }, + [354] = { + ["id"] = "rune.stat_25786091", + ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", + ["type"] = "augment", + }, + [355] = { + ["id"] = "rune.stat_3370077792", + ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", + ["type"] = "augment", + }, + [356] = { + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", + }, + [357] = { + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", + }, + [358] = { + ["id"] = "rune.stat_2241849004", + ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", + ["type"] = "augment", + }, + [359] = { + ["id"] = "rune.stat_1963589548", + ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", + ["type"] = "augment", + }, + [360] = { + ["id"] = "rune.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "augment", + }, + [361] = { + ["id"] = "rune.stat_3444646646", + ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", + ["type"] = "augment", + }, + [362] = { + ["id"] = "rune.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "augment", + }, + [363] = { + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + [364] = { + ["id"] = "rune.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "augment", + }, + [365] = { + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", + }, + [366] = { + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + [367] = { + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + [368] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + [369] = { + ["id"] = "rune.stat_3617669804", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + [370] = { + ["id"] = "rune.stat_3557924960", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", + ["type"] = "augment", + }, + [371] = { + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + [372] = { + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", + }, + [373] = { + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + [374] = { + ["id"] = "rune.stat_1693515857", + ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", + ["type"] = "augment", + }, + [375] = { + ["id"] = "rune.stat_386720106", + ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", + ["type"] = "augment", + }, + [376] = { + ["id"] = "rune.stat_901336307", + ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", + ["type"] = "augment", + }, + [377] = { + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + [378] = { + ["id"] = "rune.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "augment", + }, + [379] = { + ["id"] = "rune.stat_3863682550", + ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", + ["type"] = "augment", + }, + [380] = { + ["id"] = "rune.stat_1811977226", + ["text"] = "Gain Onslaught for # seconds when your Marks Activate", + ["type"] = "augment", + }, + [381] = { + ["id"] = "rune.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [382] = { + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [383] = { + ["id"] = "rune.stat_1995345015", + ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", + ["type"] = "augment", + }, + [384] = { + ["id"] = "rune.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "augment", + }, + [385] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + [386] = { + ["id"] = "rune.stat_726496846", + ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", + ["type"] = "augment", + }, + [387] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", + }, + [388] = { + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", + ["type"] = "augment", + }, + [389] = { + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", + }, + [390] = { + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", + }, + [391] = { + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + [392] = { + ["id"] = "rune.stat_3145796865", + ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", + ["type"] = "augment", + }, + [393] = { + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + [394] = { + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + [395] = { + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + [396] = { + ["id"] = "rune.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "augment", + }, + [397] = { + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + [398] = { + ["id"] = "rune.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "augment", + }, + [399] = { + ["id"] = "rune.stat_540694930", + ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", + ["type"] = "augment", + }, + [400] = { + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", + }, + [401] = { + ["id"] = "rune.stat_2616640048", + ["text"] = "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of #", + ["type"] = "augment", + }, + [402] = { + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", + }, + [403] = { + ["id"] = "rune.stat_2681952497", + ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["type"] = "augment", + }, + [404] = { + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + [405] = { + ["id"] = "rune.stat_1549287843", + ["text"] = "Projectiles have #% chance to Fork", + ["type"] = "augment", + }, + [406] = { + ["id"] = "rune.stat_1678831767", + ["text"] = "Recover # Life when you Block", + ["type"] = "augment", + }, + [407] = { + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + [408] = { + ["id"] = "rune.stat_1914815166", + ["text"] = "Recover #% of maximum Life over 2 Seconds when you use a Command Skill", + ["type"] = "augment", + }, + [409] = { + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + [410] = { + ["id"] = "rune.stat_3515226849", + ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", + ["type"] = "augment", + }, + [411] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + [412] = { + ["id"] = "rune.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "augment", + }, + [413] = { + ["id"] = "rune.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "augment", + }, + [414] = { + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", + }, + [415] = { + ["id"] = "rune.stat_103706408", + ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", + ["type"] = "augment", + }, + [416] = { + ["id"] = "rune.stat_2579974553", + ["text"] = "Runic Ward Regeneration Rate is doubled", + ["type"] = "augment", + }, + [417] = { + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + [418] = { + ["id"] = "rune.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "augment", + }, + [419] = { + ["id"] = "rune.stat_267552601", + ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", + ["type"] = "augment", + }, + [420] = { + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", + }, + [421] = { + ["id"] = "rune.stat_2889034188", + ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", + ["type"] = "augment", + }, + [422] = { + ["id"] = "rune.stat_602344904", + ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", + ["type"] = "augment", + }, + [423] = { + ["id"] = "rune.stat_1433896639", + ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", + ["type"] = "augment", + }, + [424] = { + ["id"] = "rune.stat_1624833382", + ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", + ["type"] = "augment", + }, + [425] = { + ["id"] = "rune.stat_2390027291", + ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", + ["type"] = "augment", + }, + [426] = { + ["id"] = "rune.stat_3353733343", + ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [427] = { + ["id"] = "rune.stat_1323701627", + ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [428] = { + ["id"] = "rune.stat_3257561708", + ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [429] = { + ["id"] = "rune.stat_293832783", + ["text"] = "When you stop Sprinting, gain Guard equal to #% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds", + ["type"] = "augment", + }, + [430] = { + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", + }, + [431] = { + ["id"] = "rune.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", + ["type"] = "augment", + }, + [432] = { + ["id"] = "rune.stat_1919509054", + ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", + ["type"] = "augment", + }, + [433] = { + ["id"] = "rune.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["type"] = "augment", + }, + }, + ["id"] = "rune", + ["label"] = "Augment", + }, + [8] = { + ["entries"] = { + [1] = { + ["id"] = "desecrated.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "desecrated", + }, + [2] = { + ["id"] = "desecrated.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "desecrated", + }, + [3] = { + ["id"] = "desecrated.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["type"] = "desecrated", + }, + [4] = { + ["id"] = "desecrated.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "desecrated", + }, + [5] = { + ["id"] = "desecrated.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["type"] = "desecrated", + }, + [6] = { + ["id"] = "desecrated.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "desecrated", + }, + [7] = { + ["id"] = "desecrated.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "desecrated", + }, + [8] = { + ["id"] = "desecrated.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "desecrated", + }, + [9] = { + ["id"] = "desecrated.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "desecrated", + }, + [10] = { + ["id"] = "desecrated.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "desecrated", + }, + [11] = { + ["id"] = "desecrated.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "desecrated", + }, + [12] = { + ["id"] = "desecrated.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "desecrated", + }, + [13] = { + ["id"] = "desecrated.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "desecrated", + }, + [14] = { + ["id"] = "desecrated.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "desecrated", + }, + [15] = { + ["id"] = "desecrated.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "desecrated", + }, + [16] = { + ["id"] = "desecrated.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "desecrated", + }, + [17] = { + ["id"] = "desecrated.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "desecrated", + }, + [18] = { + ["id"] = "desecrated.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "desecrated", + }, + [19] = { + ["id"] = "desecrated.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "desecrated", + }, + [20] = { + ["id"] = "desecrated.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "desecrated", + }, + [21] = { + ["id"] = "desecrated.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "desecrated", + }, + [22] = { + ["id"] = "desecrated.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "desecrated", + }, + [23] = { + ["id"] = "desecrated.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "desecrated", + }, + [24] = { + ["id"] = "desecrated.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "desecrated", + }, + [25] = { + ["id"] = "desecrated.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "desecrated", + }, + [26] = { + ["id"] = "desecrated.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "desecrated", + }, + [27] = { + ["id"] = "desecrated.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "desecrated", + }, + [28] = { + ["id"] = "desecrated.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "desecrated", + }, + [29] = { + ["id"] = "desecrated.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "desecrated", + }, + [30] = { + ["id"] = "desecrated.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "desecrated", + }, + [31] = { + ["id"] = "desecrated.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "desecrated", + }, + [32] = { + ["id"] = "desecrated.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "desecrated", + }, + [33] = { + ["id"] = "desecrated.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "desecrated", + }, + [34] = { + ["id"] = "desecrated.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "desecrated", + }, + [35] = { + ["id"] = "desecrated.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "desecrated", + }, + [36] = { + ["id"] = "desecrated.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "desecrated", + }, + [37] = { + ["id"] = "desecrated.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "desecrated", + }, + [38] = { + ["id"] = "desecrated.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "desecrated", + }, + [39] = { + ["id"] = "desecrated.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "desecrated", + }, + [40] = { + ["id"] = "desecrated.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "desecrated", + }, + [41] = { + ["id"] = "desecrated.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "desecrated", + }, + [42] = { + ["id"] = "desecrated.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [43] = { + ["id"] = "desecrated.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", + ["type"] = "desecrated", + }, + [44] = { + ["id"] = "desecrated.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "desecrated", + }, + [45] = { + ["id"] = "desecrated.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["type"] = "desecrated", + }, + [46] = { + ["id"] = "desecrated.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "desecrated", + }, + [47] = { + ["id"] = "desecrated.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "desecrated", + }, + [48] = { + ["id"] = "desecrated.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "desecrated", + }, + [49] = { + ["id"] = "desecrated.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["type"] = "desecrated", + }, + [50] = { + ["id"] = "desecrated.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "desecrated", + }, + [51] = { + ["id"] = "desecrated.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "desecrated", + }, + [52] = { + ["id"] = "desecrated.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["type"] = "desecrated", + }, + [53] = { + ["id"] = "desecrated.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "desecrated", + }, + [54] = { + ["id"] = "desecrated.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [55] = { + ["id"] = "desecrated.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "desecrated", + }, + [56] = { + ["id"] = "desecrated.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [57] = { + ["id"] = "desecrated.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["type"] = "desecrated", + }, + [58] = { + ["id"] = "desecrated.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "desecrated", + }, + [59] = { + ["id"] = "desecrated.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["type"] = "desecrated", + }, + [60] = { + ["id"] = "desecrated.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "desecrated", + }, + [61] = { + ["id"] = "desecrated.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "desecrated", + }, + [62] = { + ["id"] = "desecrated.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [63] = { + ["id"] = "desecrated.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "desecrated", + }, + [64] = { + ["id"] = "desecrated.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "desecrated", + }, + [65] = { + ["id"] = "desecrated.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "desecrated", + }, + [66] = { + ["id"] = "desecrated.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "desecrated", + }, + [67] = { + ["id"] = "desecrated.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "desecrated", + }, + [68] = { + ["id"] = "desecrated.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "desecrated", + }, + [69] = { + ["id"] = "desecrated.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "desecrated", + }, + [70] = { + ["id"] = "desecrated.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "desecrated", + }, + [71] = { + ["id"] = "desecrated.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "desecrated", + }, + [72] = { + ["id"] = "desecrated.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "desecrated", + }, + [73] = { + ["id"] = "desecrated.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "desecrated", + }, + [74] = { + ["id"] = "desecrated.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [75] = { + ["id"] = "desecrated.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "desecrated", + }, + [76] = { + ["id"] = "desecrated.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "desecrated", + }, + [77] = { + ["id"] = "desecrated.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "desecrated", + }, + [78] = { + ["id"] = "desecrated.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "desecrated", + }, + [79] = { + ["id"] = "desecrated.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "desecrated", + }, + [80] = { + ["id"] = "desecrated.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["type"] = "desecrated", + }, + [81] = { + ["id"] = "desecrated.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["type"] = "desecrated", + }, + [82] = { + ["id"] = "desecrated.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "desecrated", + }, + [83] = { + ["id"] = "desecrated.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "desecrated", + }, + [84] = { + ["id"] = "desecrated.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "desecrated", + }, + [85] = { + ["id"] = "desecrated.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "desecrated", + }, + [86] = { + ["id"] = "desecrated.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "desecrated", + }, + [87] = { + ["id"] = "desecrated.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "desecrated", + }, + [88] = { + ["id"] = "desecrated.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "desecrated", + }, + [89] = { + ["id"] = "desecrated.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "desecrated", + }, + [90] = { + ["id"] = "desecrated.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "desecrated", + }, + [91] = { + ["id"] = "desecrated.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "desecrated", + }, + [92] = { + ["id"] = "desecrated.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "desecrated", + }, + [93] = { + ["id"] = "desecrated.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", + ["type"] = "desecrated", + }, + [94] = { + ["id"] = "desecrated.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "desecrated", + }, + [95] = { + ["id"] = "desecrated.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", + ["type"] = "desecrated", + }, + [96] = { + ["id"] = "desecrated.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "desecrated", + }, + [97] = { + ["id"] = "desecrated.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "desecrated", + }, + [98] = { + ["id"] = "desecrated.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "desecrated", + }, + [99] = { + ["id"] = "desecrated.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "desecrated", + }, + [100] = { + ["id"] = "desecrated.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "desecrated", + }, + [101] = { + ["id"] = "desecrated.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [102] = { + ["id"] = "desecrated.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [103] = { + ["id"] = "desecrated.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "desecrated", + }, + [104] = { + ["id"] = "desecrated.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "desecrated", + }, + [105] = { + ["id"] = "desecrated.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", + ["type"] = "desecrated", + }, + [106] = { + ["id"] = "desecrated.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [107] = { + ["id"] = "desecrated.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "desecrated", + }, + [108] = { + ["id"] = "desecrated.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "desecrated", + }, + [109] = { + ["id"] = "desecrated.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [110] = { + ["id"] = "desecrated.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "desecrated", + }, + [111] = { + ["id"] = "desecrated.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "desecrated", + }, + [112] = { + ["id"] = "desecrated.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "desecrated", + }, + [113] = { + ["id"] = "desecrated.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "desecrated", + }, + [114] = { + ["id"] = "desecrated.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "desecrated", + }, + [115] = { + ["id"] = "desecrated.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", + ["type"] = "desecrated", + }, + [116] = { + ["id"] = "desecrated.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "desecrated", + }, + [117] = { + ["id"] = "desecrated.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "desecrated", + }, + [118] = { + ["id"] = "desecrated.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "desecrated", + }, + [119] = { + ["id"] = "desecrated.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "desecrated", + }, + [120] = { + ["id"] = "desecrated.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "desecrated", + }, + [121] = { + ["id"] = "desecrated.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", + ["type"] = "desecrated", + }, + [122] = { + ["id"] = "desecrated.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "desecrated", + }, + [123] = { + ["id"] = "desecrated.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", + ["type"] = "desecrated", + }, + [124] = { + ["id"] = "desecrated.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "desecrated", + }, + [125] = { + ["id"] = "desecrated.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "desecrated", + }, + [126] = { + ["id"] = "desecrated.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "desecrated", + }, + [127] = { + ["id"] = "desecrated.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "desecrated", + }, + [128] = { + ["id"] = "desecrated.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "desecrated", + }, + [129] = { + ["id"] = "desecrated.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "desecrated", + }, + [130] = { + ["id"] = "desecrated.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "desecrated", + }, + [131] = { + ["id"] = "desecrated.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "desecrated", + }, + [132] = { + ["id"] = "desecrated.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "desecrated", + }, + [133] = { + ["id"] = "desecrated.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "desecrated", + }, + [134] = { + ["id"] = "desecrated.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "desecrated", + }, + [135] = { + ["id"] = "desecrated.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "desecrated", + }, + [136] = { + ["id"] = "desecrated.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "desecrated", + }, + [137] = { + ["id"] = "desecrated.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "desecrated", + }, + [138] = { + ["id"] = "desecrated.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "desecrated", + }, + [139] = { + ["id"] = "desecrated.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "desecrated", + }, + [140] = { + ["id"] = "desecrated.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "desecrated", + }, + [141] = { + ["id"] = "desecrated.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "desecrated", + }, + [142] = { + ["id"] = "desecrated.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [143] = { + ["id"] = "desecrated.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "desecrated", + }, + [144] = { + ["id"] = "desecrated.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "desecrated", + }, + [145] = { + ["id"] = "desecrated.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "desecrated", + }, + [146] = { + ["id"] = "desecrated.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "desecrated", + }, + [147] = { + ["id"] = "desecrated.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["type"] = "desecrated", + }, + [148] = { + ["id"] = "desecrated.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "desecrated", + }, + [149] = { + ["id"] = "desecrated.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "desecrated", + }, + [150] = { + ["id"] = "desecrated.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "desecrated", + }, + [151] = { + ["id"] = "desecrated.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "desecrated", + }, + [152] = { + ["id"] = "desecrated.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "desecrated", + }, + [153] = { + ["id"] = "desecrated.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [154] = { + ["id"] = "desecrated.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "desecrated", + }, + [155] = { + ["id"] = "desecrated.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "desecrated", + }, + [156] = { + ["id"] = "desecrated.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "desecrated", + }, + [157] = { + ["id"] = "desecrated.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [158] = { + ["id"] = "desecrated.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [159] = { + ["id"] = "desecrated.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "desecrated", + }, + [160] = { + ["id"] = "desecrated.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "desecrated", + }, + [161] = { + ["id"] = "desecrated.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "desecrated", + }, + [162] = { + ["id"] = "desecrated.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "desecrated", + }, + [163] = { + ["id"] = "desecrated.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [164] = { + ["id"] = "desecrated.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["type"] = "desecrated", + }, + [165] = { + ["id"] = "desecrated.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "desecrated", + }, + [166] = { + ["id"] = "desecrated.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "desecrated", + }, + [167] = { + ["id"] = "desecrated.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [168] = { + ["id"] = "desecrated.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "desecrated", + }, + [169] = { + ["id"] = "desecrated.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "desecrated", + }, + [170] = { + ["id"] = "desecrated.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "desecrated", + }, + [171] = { + ["id"] = "desecrated.stat_3131442032", + ["text"] = "#% increased Grenade Damage", + ["type"] = "desecrated", + }, + [172] = { + ["id"] = "desecrated.stat_1365232741", + ["text"] = "#% increased Grenade Duration", + ["type"] = "desecrated", + }, + [173] = { + ["id"] = "desecrated.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "desecrated", + }, + [174] = { + ["id"] = "desecrated.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", + ["type"] = "desecrated", + }, + [175] = { + ["id"] = "desecrated.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "desecrated", + }, + [176] = { + ["id"] = "desecrated.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "desecrated", + }, + [177] = { + ["id"] = "desecrated.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "desecrated", + }, + [178] = { + ["id"] = "desecrated.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "desecrated", + }, + [179] = { + ["id"] = "desecrated.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "desecrated", + }, + [180] = { + ["id"] = "desecrated.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "desecrated", + }, + [181] = { + ["id"] = "desecrated.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "desecrated", + }, + [182] = { + ["id"] = "desecrated.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", + ["type"] = "desecrated", + }, + [183] = { + ["id"] = "desecrated.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [184] = { + ["id"] = "desecrated.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["type"] = "desecrated", + }, + [185] = { + ["id"] = "desecrated.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "desecrated", + }, + [186] = { + ["id"] = "desecrated.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "desecrated", + }, + [187] = { + ["id"] = "desecrated.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [188] = { + ["id"] = "desecrated.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "desecrated", + }, + [189] = { + ["id"] = "desecrated.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["type"] = "desecrated", + }, + [190] = { + ["id"] = "desecrated.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "desecrated", + }, + [191] = { + ["id"] = "desecrated.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "desecrated", + }, + [192] = { + ["id"] = "desecrated.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "desecrated", + }, + [193] = { + ["id"] = "desecrated.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "desecrated", + }, + [194] = { + ["id"] = "desecrated.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["type"] = "desecrated", + }, + [195] = { + ["id"] = "desecrated.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["type"] = "desecrated", + }, + [196] = { + ["id"] = "desecrated.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "desecrated", + }, + [197] = { + ["id"] = "desecrated.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["type"] = "desecrated", + }, + [198] = { + ["id"] = "desecrated.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "desecrated", + }, + [199] = { + ["id"] = "desecrated.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["type"] = "desecrated", + }, + [200] = { + ["id"] = "desecrated.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "desecrated", + }, + [201] = { + ["id"] = "desecrated.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["type"] = "desecrated", + }, + [202] = { + ["id"] = "desecrated.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "desecrated", + }, + [203] = { + ["id"] = "desecrated.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "desecrated", + }, + [204] = { + ["id"] = "desecrated.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "desecrated", + }, + [205] = { + ["id"] = "desecrated.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "desecrated", + }, + [206] = { + ["id"] = "desecrated.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "desecrated", + }, + [207] = { + ["id"] = "desecrated.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "desecrated", + }, + [208] = { + ["id"] = "desecrated.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [209] = { + ["id"] = "desecrated.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "desecrated", + }, + [210] = { + ["id"] = "desecrated.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "desecrated", + }, + [211] = { + ["id"] = "desecrated.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "desecrated", + }, + [212] = { + ["id"] = "desecrated.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "desecrated", + }, + [213] = { + ["id"] = "desecrated.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "desecrated", + }, + [214] = { + ["id"] = "desecrated.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "desecrated", + }, + [215] = { + ["id"] = "desecrated.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "desecrated", + }, + [216] = { + ["id"] = "desecrated.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "desecrated", + }, + [217] = { + ["id"] = "desecrated.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "desecrated", + }, + [218] = { + ["id"] = "desecrated.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "desecrated", + }, + [219] = { + ["id"] = "desecrated.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "desecrated", + }, + [220] = { + ["id"] = "desecrated.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "desecrated", + }, + [221] = { + ["id"] = "desecrated.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "desecrated", + }, + [222] = { + ["id"] = "desecrated.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "desecrated", + }, + [223] = { + ["id"] = "desecrated.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "desecrated", + }, + [224] = { + ["id"] = "desecrated.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "desecrated", + }, + [225] = { + ["id"] = "desecrated.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [226] = { + ["id"] = "desecrated.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "desecrated", + }, + [227] = { + ["id"] = "desecrated.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "desecrated", + }, + [228] = { + ["id"] = "desecrated.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "desecrated", + }, + [229] = { + ["id"] = "desecrated.stat_710476746", + ["text"] = "#% increased Reload Speed", + ["type"] = "desecrated", + }, + [230] = { + ["id"] = "desecrated.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["type"] = "desecrated", + }, + [231] = { + ["id"] = "desecrated.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["type"] = "desecrated", + }, + [232] = { + ["id"] = "desecrated.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "desecrated", + }, + [233] = { + ["id"] = "desecrated.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [234] = { + ["id"] = "desecrated.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "desecrated", + }, + [235] = { + ["id"] = "desecrated.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["type"] = "desecrated", + }, + [236] = { + ["id"] = "desecrated.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "desecrated", + }, + [237] = { + ["id"] = "desecrated.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "desecrated", + }, + [238] = { + ["id"] = "desecrated.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "desecrated", + }, + [239] = { + ["id"] = "desecrated.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["type"] = "desecrated", + }, + [240] = { + ["id"] = "desecrated.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["type"] = "desecrated", + }, + [241] = { + ["id"] = "desecrated.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["type"] = "desecrated", + }, + [242] = { + ["id"] = "desecrated.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["type"] = "desecrated", + }, + [243] = { + ["id"] = "desecrated.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["type"] = "desecrated", + }, + [244] = { + ["id"] = "desecrated.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "desecrated", + }, + [245] = { + ["id"] = "desecrated.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "desecrated", + }, + [246] = { + ["id"] = "desecrated.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", + ["type"] = "desecrated", + }, + [247] = { + ["id"] = "desecrated.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "desecrated", + }, + [248] = { + ["id"] = "desecrated.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "desecrated", + }, + [249] = { + ["id"] = "desecrated.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "desecrated", + }, + [250] = { + ["id"] = "desecrated.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "desecrated", + }, + [251] = { + ["id"] = "desecrated.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "desecrated", + }, + [252] = { + ["id"] = "desecrated.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "desecrated", + }, + [253] = { + ["id"] = "desecrated.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "desecrated", + }, + [254] = { + ["id"] = "desecrated.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "desecrated", + }, + [255] = { + ["id"] = "desecrated.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "desecrated", + }, + [256] = { + ["id"] = "desecrated.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "desecrated", + }, + [257] = { + ["id"] = "desecrated.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "desecrated", + }, + [258] = { + ["id"] = "desecrated.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "desecrated", + }, + [259] = { + ["id"] = "desecrated.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [260] = { + ["id"] = "desecrated.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "desecrated", + }, + [261] = { + ["id"] = "desecrated.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "desecrated", + }, + [262] = { + ["id"] = "desecrated.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "desecrated", + }, + [263] = { + ["id"] = "desecrated.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "desecrated", + }, + [264] = { + ["id"] = "desecrated.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "desecrated", + }, + [265] = { + ["id"] = "desecrated.stat_3481083201", + ["text"] = "#% increased chance to Poison", + ["type"] = "desecrated", + }, + [266] = { + ["id"] = "desecrated.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "desecrated", + }, + [267] = { + ["id"] = "desecrated.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "desecrated", + }, + [268] = { + ["id"] = "desecrated.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", + ["type"] = "desecrated", + }, + [269] = { + ["id"] = "desecrated.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "desecrated", + }, + [270] = { + ["id"] = "desecrated.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "desecrated", + }, + [271] = { + ["id"] = "desecrated.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "desecrated", + }, + [272] = { + ["id"] = "desecrated.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "desecrated", + }, + [273] = { + ["id"] = "desecrated.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "desecrated", + }, + [274] = { + ["id"] = "desecrated.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "desecrated", + }, + [275] = { + ["id"] = "desecrated.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "desecrated", + }, + [276] = { + ["id"] = "desecrated.stat_3376488707", + ["text"] = "#% maximum Player Resistances", + ["type"] = "desecrated", + }, + [277] = { + ["id"] = "desecrated.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "desecrated", + }, + [278] = { + ["id"] = "desecrated.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "desecrated", + }, + [279] = { + ["id"] = "desecrated.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "desecrated", + }, + [280] = { + ["id"] = "desecrated.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "desecrated", + }, + [281] = { + ["id"] = "desecrated.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "desecrated", + }, + [282] = { + ["id"] = "desecrated.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "desecrated", + }, + [283] = { + ["id"] = "desecrated.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["type"] = "desecrated", + }, + [284] = { + ["id"] = "desecrated.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "desecrated", + }, + [285] = { + ["id"] = "desecrated.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "desecrated", + }, + [286] = { + ["id"] = "desecrated.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["type"] = "desecrated", + }, + [287] = { + ["id"] = "desecrated.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "desecrated", + }, + [288] = { + ["id"] = "desecrated.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "desecrated", + }, + [289] = { + ["id"] = "desecrated.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "desecrated", + }, + [290] = { + ["id"] = "desecrated.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "desecrated", + }, + [291] = { + ["id"] = "desecrated.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "desecrated", + }, + [292] = { + ["id"] = "desecrated.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "desecrated", + }, + [293] = { + ["id"] = "desecrated.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "desecrated", + }, + [294] = { + ["id"] = "desecrated.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "desecrated", + }, + [295] = { + ["id"] = "desecrated.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["type"] = "desecrated", + }, + [296] = { + ["id"] = "desecrated.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "desecrated", + }, + [297] = { + ["id"] = "desecrated.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "desecrated", + }, + [298] = { + ["id"] = "desecrated.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "desecrated", + }, + [299] = { + ["id"] = "desecrated.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "desecrated", + }, + [300] = { + ["id"] = "desecrated.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "desecrated", + }, + [301] = { + ["id"] = "desecrated.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "desecrated", + }, + [302] = { + ["id"] = "desecrated.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "desecrated", + }, + [303] = { + ["id"] = "desecrated.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "desecrated", + }, + [304] = { + ["id"] = "desecrated.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "desecrated", + }, + [305] = { + ["id"] = "desecrated.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "desecrated", + }, + [306] = { + ["id"] = "desecrated.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "desecrated", + }, + [307] = { + ["id"] = "desecrated.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "desecrated", + }, + [308] = { + ["id"] = "desecrated.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "desecrated", + }, + [309] = { + ["id"] = "desecrated.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "desecrated", + }, + [310] = { + ["id"] = "desecrated.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "desecrated", + }, + [311] = { + ["id"] = "desecrated.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "desecrated", + }, + [312] = { + ["id"] = "desecrated.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "desecrated", + }, + [313] = { + ["id"] = "desecrated.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "desecrated", + }, + [314] = { + ["id"] = "desecrated.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [315] = { + ["id"] = "desecrated.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "desecrated", + }, + [316] = { + ["id"] = "desecrated.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "desecrated", + }, + [317] = { + ["id"] = "desecrated.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "desecrated", + }, + [318] = { + ["id"] = "desecrated.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "desecrated", + }, + [319] = { + ["id"] = "desecrated.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["type"] = "desecrated", + }, + [320] = { + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["type"] = "desecrated", + }, + [321] = { + ["id"] = "desecrated.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["type"] = "desecrated", + }, + [322] = { + ["id"] = "desecrated.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["type"] = "desecrated", + }, + [323] = { + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", + ["type"] = "desecrated", + }, + [324] = { + ["id"] = "desecrated.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["type"] = "desecrated", + }, + [325] = { + ["id"] = "desecrated.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", + ["type"] = "desecrated", + }, + [326] = { + ["id"] = "desecrated.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", + ["type"] = "desecrated", + }, + [327] = { + ["id"] = "desecrated.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", + ["type"] = "desecrated", + }, + [328] = { + ["id"] = "desecrated.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "desecrated", + }, + [329] = { + ["id"] = "desecrated.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "desecrated", + }, + [330] = { + ["id"] = "desecrated.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "desecrated", + }, + [331] = { + ["id"] = "desecrated.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "desecrated", + }, + [332] = { + ["id"] = "desecrated.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "desecrated", + }, + [333] = { + ["id"] = "desecrated.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "desecrated", + }, + [334] = { + ["id"] = "desecrated.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "desecrated", + }, + [335] = { + ["id"] = "desecrated.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "desecrated", + }, + [336] = { + ["id"] = "desecrated.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "desecrated", + }, + [337] = { + ["id"] = "desecrated.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "desecrated", + }, + [338] = { + ["id"] = "desecrated.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "desecrated", + }, + [339] = { + ["id"] = "desecrated.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "desecrated", + }, + [340] = { + ["id"] = "desecrated.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "desecrated", + }, + [341] = { + ["id"] = "desecrated.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "desecrated", + }, + [342] = { + ["id"] = "desecrated.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "desecrated", + }, + [343] = { + ["id"] = "desecrated.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "desecrated", + }, + [344] = { + ["id"] = "desecrated.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "desecrated", + }, + [345] = { + ["id"] = "desecrated.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [346] = { + ["id"] = "desecrated.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [347] = { + ["id"] = "desecrated.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [348] = { + ["id"] = "desecrated.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "desecrated", + }, + [349] = { + ["id"] = "desecrated.stat_3490187949", + ["text"] = "Area contains # additional Abysses", + ["type"] = "desecrated", + }, + [350] = { + ["id"] = "desecrated.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", + ["type"] = "desecrated", + }, + [351] = { + ["id"] = "desecrated.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", + ["type"] = "desecrated", + }, + [352] = { + ["id"] = "desecrated.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["type"] = "desecrated", + }, + [353] = { + ["id"] = "desecrated.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", + ["type"] = "desecrated", + }, + [354] = { + ["id"] = "desecrated.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "desecrated", + }, + [355] = { + ["id"] = "desecrated.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", + ["type"] = "desecrated", + }, + [356] = { + ["id"] = "desecrated.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", + ["type"] = "desecrated", + }, + [357] = { + ["id"] = "desecrated.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", + ["type"] = "desecrated", + }, + [358] = { + ["id"] = "desecrated.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", + ["type"] = "desecrated", + }, + [359] = { + ["id"] = "desecrated.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", + ["type"] = "desecrated", + }, + [360] = { + ["id"] = "desecrated.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "desecrated", + }, + [361] = { + ["id"] = "desecrated.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "desecrated", + }, + [362] = { + ["id"] = "desecrated.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", + ["type"] = "desecrated", + }, + [363] = { + ["id"] = "desecrated.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "desecrated", + }, + [364] = { + ["id"] = "desecrated.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", + ["type"] = "desecrated", + }, + [365] = { + ["id"] = "desecrated.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "desecrated", + }, + [366] = { + ["id"] = "desecrated.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "desecrated", + }, + [367] = { + ["id"] = "desecrated.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "desecrated", + }, + [368] = { + ["id"] = "desecrated.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "desecrated", + }, + [369] = { + ["id"] = "desecrated.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "desecrated", + }, + [370] = { + ["id"] = "desecrated.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "desecrated", + }, + [371] = { + ["id"] = "desecrated.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [372] = { + ["id"] = "desecrated.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [373] = { + ["id"] = "desecrated.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "desecrated", + }, + [374] = { + ["id"] = "desecrated.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "desecrated", + }, + [375] = { + ["id"] = "desecrated.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [376] = { + ["id"] = "desecrated.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [377] = { + ["id"] = "desecrated.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [378] = { + ["id"] = "desecrated.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", + ["type"] = "desecrated", + }, + [379] = { + ["id"] = "desecrated.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "desecrated", + }, + [380] = { + ["id"] = "desecrated.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "desecrated", + }, + [381] = { + ["id"] = "desecrated.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "desecrated", + }, + [382] = { + ["id"] = "desecrated.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [383] = { + ["id"] = "desecrated.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["type"] = "desecrated", + }, + [384] = { + ["id"] = "desecrated.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["type"] = "desecrated", + }, + [385] = { + ["id"] = "desecrated.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["type"] = "desecrated", + }, + [386] = { + ["id"] = "desecrated.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["type"] = "desecrated", + }, + [387] = { + ["id"] = "desecrated.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["type"] = "desecrated", + }, + [388] = { + ["id"] = "desecrated.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["type"] = "desecrated", + }, + [389] = { + ["id"] = "desecrated.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["type"] = "desecrated", + }, + [390] = { + ["id"] = "desecrated.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["type"] = "desecrated", + }, + [391] = { + ["id"] = "desecrated.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [392] = { + ["id"] = "desecrated.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [393] = { + ["id"] = "desecrated.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["type"] = "desecrated", + }, + [394] = { + ["id"] = "desecrated.stat_468694293", + ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", + ["type"] = "desecrated", + }, + [395] = { + ["id"] = "desecrated.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [396] = { + ["id"] = "desecrated.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["type"] = "desecrated", + }, + [397] = { + ["id"] = "desecrated.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["type"] = "desecrated", + }, + [398] = { + ["id"] = "desecrated.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["type"] = "desecrated", + }, + [399] = { + ["id"] = "desecrated.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [400] = { + ["id"] = "desecrated.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["type"] = "desecrated", + }, + [401] = { + ["id"] = "desecrated.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "desecrated", + }, + [402] = { + ["id"] = "desecrated.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "desecrated", + }, + [403] = { + ["id"] = "desecrated.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "desecrated", + }, + [404] = { + ["id"] = "desecrated.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "desecrated", + }, + [405] = { + ["id"] = "desecrated.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "desecrated", + }, + [406] = { + ["id"] = "desecrated.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "desecrated", + }, + [407] = { + ["id"] = "desecrated.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "desecrated", + }, + [408] = { + ["id"] = "desecrated.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "desecrated", + }, + [409] = { + ["id"] = "desecrated.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["type"] = "desecrated", + }, + [410] = { + ["id"] = "desecrated.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [411] = { + ["id"] = "desecrated.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["type"] = "desecrated", + }, + [412] = { + ["id"] = "desecrated.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [413] = { + ["id"] = "desecrated.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "desecrated", + }, + [414] = { + ["id"] = "desecrated.stat_1776945532", + ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["type"] = "desecrated", + }, + [415] = { + ["id"] = "desecrated.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["type"] = "desecrated", + }, + [416] = { + ["id"] = "desecrated.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "desecrated", + }, + [417] = { + ["id"] = "desecrated.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "desecrated", + }, + [418] = { + ["id"] = "desecrated.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "desecrated", + }, + [419] = { + ["id"] = "desecrated.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "desecrated", + }, + [420] = { + ["id"] = "desecrated.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "desecrated", + }, + [421] = { + ["id"] = "desecrated.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "desecrated", + }, + [422] = { + ["id"] = "desecrated.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "desecrated", + }, + [423] = { + ["id"] = "desecrated.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "desecrated", + }, + [424] = { + ["id"] = "desecrated.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "desecrated", + }, + [425] = { + ["id"] = "desecrated.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "desecrated", + }, + [426] = { + ["id"] = "desecrated.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "desecrated", + }, + [427] = { + ["id"] = "desecrated.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "desecrated", + }, + [428] = { + ["id"] = "desecrated.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "desecrated", + }, + [429] = { + ["id"] = "desecrated.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", + ["type"] = "desecrated", + }, + [430] = { + ["id"] = "desecrated.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "desecrated", + }, + [431] = { + ["id"] = "desecrated.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "desecrated", + }, + [432] = { + ["id"] = "desecrated.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["type"] = "desecrated", + }, + [433] = { + ["id"] = "desecrated.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [434] = { + ["id"] = "desecrated.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [435] = { + ["id"] = "desecrated.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "desecrated", + }, + [436] = { + ["id"] = "desecrated.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "desecrated", + }, + [437] = { + ["id"] = "desecrated.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "desecrated", + }, + [438] = { + ["id"] = "desecrated.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "desecrated", + }, + [439] = { + ["id"] = "desecrated.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "desecrated", + }, + [440] = { + ["id"] = "desecrated.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "desecrated", + }, + [441] = { + ["id"] = "desecrated.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["type"] = "desecrated", + }, + [442] = { + ["id"] = "desecrated.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["type"] = "desecrated", + }, + [443] = { + ["id"] = "desecrated.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["type"] = "desecrated", + }, + [444] = { + ["id"] = "desecrated.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "desecrated", + }, + [445] = { + ["id"] = "desecrated.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", + ["type"] = "desecrated", + }, + [446] = { + ["id"] = "desecrated.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "desecrated", + }, + [447] = { + ["id"] = "desecrated.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "desecrated", + }, + [448] = { + ["id"] = "desecrated.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "desecrated", + }, + [449] = { + ["id"] = "desecrated.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "desecrated", + }, + [450] = { + ["id"] = "desecrated.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "desecrated", + }, + [451] = { + ["id"] = "desecrated.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "desecrated", + }, + [452] = { + ["id"] = "desecrated.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "desecrated", + }, + [453] = { + ["id"] = "desecrated.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [454] = { + ["id"] = "desecrated.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "desecrated", + }, + [455] = { + ["id"] = "desecrated.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [456] = { + ["id"] = "desecrated.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [457] = { + ["id"] = "desecrated.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "desecrated", + }, + [458] = { + ["id"] = "desecrated.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["type"] = "desecrated", + }, + [459] = { + ["id"] = "desecrated.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "desecrated", + }, + [460] = { + ["id"] = "desecrated.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "desecrated", + }, + [461] = { + ["id"] = "desecrated.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", + ["type"] = "desecrated", + }, + [462] = { + ["id"] = "desecrated.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "desecrated", + }, + [463] = { + ["id"] = "desecrated.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "desecrated", + }, + [464] = { + ["id"] = "desecrated.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "desecrated", + }, + [465] = { + ["id"] = "desecrated.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["type"] = "desecrated", + }, + [466] = { + ["id"] = "desecrated.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "desecrated", + }, + [467] = { + ["id"] = "desecrated.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [468] = { + ["id"] = "desecrated.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [469] = { + ["id"] = "desecrated.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "desecrated", + }, + [470] = { + ["id"] = "desecrated.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [471] = { + ["id"] = "desecrated.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [472] = { + ["id"] = "desecrated.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [473] = { + ["id"] = "desecrated.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "desecrated", + }, + [474] = { + ["id"] = "desecrated.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "desecrated", + }, + [475] = { + ["id"] = "desecrated.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [476] = { + ["id"] = "desecrated.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [477] = { + ["id"] = "desecrated.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [478] = { + ["id"] = "desecrated.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "desecrated", + }, + [479] = { + ["id"] = "desecrated.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", + ["type"] = "desecrated", + }, + [480] = { + ["id"] = "desecrated.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [481] = { + ["id"] = "desecrated.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "desecrated", + }, + [482] = { + ["id"] = "desecrated.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "desecrated", + }, + [483] = { + ["id"] = "desecrated.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "desecrated", + }, + [484] = { + ["id"] = "desecrated.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "desecrated", + }, + [485] = { + ["id"] = "desecrated.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "desecrated", + }, + [486] = { + ["id"] = "desecrated.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "desecrated", + }, + [487] = { + ["id"] = "desecrated.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "desecrated", + }, + [488] = { + ["id"] = "desecrated.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "desecrated", + }, + [489] = { + ["id"] = "desecrated.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "desecrated", + }, + [490] = { + ["id"] = "desecrated.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [491] = { + ["id"] = "desecrated.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [492] = { + ["id"] = "desecrated.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "desecrated", + }, + [493] = { + ["id"] = "desecrated.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [494] = { + ["id"] = "desecrated.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "desecrated", + }, + [495] = { + ["id"] = "desecrated.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "desecrated", + }, + [496] = { + ["id"] = "desecrated.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [497] = { + ["id"] = "desecrated.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [498] = { + ["id"] = "desecrated.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "desecrated", + }, + [499] = { + ["id"] = "desecrated.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [500] = { + ["id"] = "desecrated.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [501] = { + ["id"] = "desecrated.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "desecrated", + }, + [502] = { + ["id"] = "desecrated.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [503] = { + ["id"] = "desecrated.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "desecrated", + }, + [504] = { + ["id"] = "desecrated.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["type"] = "desecrated", + }, + [505] = { + ["id"] = "desecrated.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["type"] = "desecrated", + }, + [506] = { + ["id"] = "desecrated.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "desecrated", + }, + [507] = { + ["id"] = "desecrated.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "desecrated", + }, + [508] = { + ["id"] = "desecrated.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "desecrated", + }, + [509] = { + ["id"] = "desecrated.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "desecrated", + }, + [510] = { + ["id"] = "desecrated.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "desecrated", + }, + [511] = { + ["id"] = "desecrated.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "desecrated", + }, + [512] = { + ["id"] = "desecrated.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "desecrated", + }, + [513] = { + ["id"] = "desecrated.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "desecrated", + }, + [514] = { + ["id"] = "desecrated.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "desecrated", + }, + [515] = { + ["id"] = "desecrated.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "desecrated", + }, + [516] = { + ["id"] = "desecrated.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "desecrated", + }, + [517] = { + ["id"] = "desecrated.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "desecrated", + }, + [518] = { + ["id"] = "desecrated.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "desecrated", + }, + [519] = { + ["id"] = "desecrated.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "desecrated", + }, + [520] = { + ["id"] = "desecrated.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "desecrated", + }, + [521] = { + ["id"] = "desecrated.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "desecrated", + }, + [522] = { + ["id"] = "desecrated.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "desecrated", + }, + [523] = { + ["id"] = "desecrated.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "desecrated", + }, + [524] = { + ["id"] = "desecrated.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [525] = { + ["id"] = "desecrated.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [526] = { + ["id"] = "desecrated.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "desecrated", + }, + [527] = { + ["id"] = "desecrated.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "desecrated", + }, + [528] = { + ["id"] = "desecrated.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [529] = { + ["id"] = "desecrated.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "desecrated", + }, + [530] = { + ["id"] = "desecrated.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "desecrated", + }, + [531] = { + ["id"] = "desecrated.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "desecrated", + }, + [532] = { + ["id"] = "desecrated.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "desecrated", + }, + [533] = { + ["id"] = "desecrated.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "desecrated", + }, + [534] = { + ["id"] = "desecrated.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "desecrated", + }, + [535] = { + ["id"] = "desecrated.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "desecrated", + }, + [536] = { + ["id"] = "desecrated.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "desecrated", + }, + [537] = { + ["id"] = "desecrated.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "desecrated", + }, + [538] = { + ["id"] = "desecrated.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "desecrated", + }, + [539] = { + ["id"] = "desecrated.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [540] = { + ["id"] = "desecrated.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "desecrated", + }, + [541] = { + ["id"] = "desecrated.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [542] = { + ["id"] = "desecrated.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "desecrated", + }, + [543] = { + ["id"] = "desecrated.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "desecrated", + }, + [544] = { + ["id"] = "desecrated.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "desecrated", + }, + [545] = { + ["id"] = "desecrated.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "desecrated", + }, + [546] = { + ["id"] = "desecrated.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [547] = { + ["id"] = "desecrated.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "desecrated", + }, + [548] = { + ["id"] = "desecrated.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "desecrated", + }, + [549] = { + ["id"] = "desecrated.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "desecrated", + }, + [550] = { + ["id"] = "desecrated.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "desecrated", + }, + [551] = { + ["id"] = "desecrated.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "desecrated", + }, + [552] = { + ["id"] = "desecrated.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["type"] = "desecrated", + }, + [553] = { + ["id"] = "desecrated.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "desecrated", + }, + [554] = { + ["id"] = "desecrated.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "desecrated", + }, + [555] = { + ["id"] = "desecrated.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "desecrated", + }, + [556] = { + ["id"] = "desecrated.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "desecrated", + }, + [557] = { + ["id"] = "desecrated.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "desecrated", + }, + [558] = { + ["id"] = "desecrated.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "desecrated", + }, + [559] = { + ["id"] = "desecrated.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "desecrated", + }, + [560] = { + ["id"] = "desecrated.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [561] = { + ["id"] = "desecrated.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "desecrated", + }, + [562] = { + ["id"] = "desecrated.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "desecrated", + }, + [563] = { + ["id"] = "desecrated.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [564] = { + ["id"] = "desecrated.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "desecrated", + }, + [565] = { + ["id"] = "desecrated.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "desecrated", + }, + [566] = { + ["id"] = "desecrated.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [567] = { + ["id"] = "desecrated.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "desecrated", + }, + [568] = { + ["id"] = "desecrated.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "desecrated", + }, + [569] = { + ["id"] = "desecrated.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "desecrated", + }, + [570] = { + ["id"] = "desecrated.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "desecrated", + }, + [571] = { + ["id"] = "desecrated.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "desecrated", + }, + [572] = { + ["id"] = "desecrated.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "desecrated", + }, + [573] = { + ["id"] = "desecrated.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "desecrated", + }, + [574] = { + ["id"] = "desecrated.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["type"] = "desecrated", + }, + [575] = { + ["id"] = "desecrated.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "desecrated", + }, + [576] = { + ["id"] = "desecrated.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["type"] = "desecrated", + }, + [577] = { + ["id"] = "desecrated.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "desecrated", + }, + [578] = { + ["id"] = "desecrated.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "desecrated", + }, + [579] = { + ["id"] = "desecrated.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "desecrated", + }, + [580] = { + ["id"] = "desecrated.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "desecrated", + }, + [581] = { + ["id"] = "desecrated.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["type"] = "desecrated", + }, + [582] = { + ["id"] = "desecrated.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [583] = { + ["id"] = "desecrated.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [584] = { + ["id"] = "desecrated.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "desecrated", + }, + [585] = { + ["id"] = "desecrated.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [586] = { + ["id"] = "desecrated.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "desecrated", + }, + [587] = { + ["id"] = "desecrated.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [588] = { + ["id"] = "desecrated.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [589] = { + ["id"] = "desecrated.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [590] = { + ["id"] = "desecrated.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "desecrated", + }, + [591] = { + ["id"] = "desecrated.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "desecrated", + }, + [592] = { + ["id"] = "desecrated.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "desecrated", + }, + [593] = { + ["id"] = "desecrated.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "desecrated", + }, + [594] = { + ["id"] = "desecrated.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["type"] = "desecrated", + }, + [595] = { + ["id"] = "desecrated.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "desecrated", + }, + [596] = { + ["id"] = "desecrated.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [597] = { + ["id"] = "desecrated.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "desecrated", + }, + [598] = { + ["id"] = "desecrated.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "desecrated", + }, + [599] = { + ["id"] = "desecrated.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["type"] = "desecrated", + }, + [600] = { + ["id"] = "desecrated.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "desecrated", + }, + [601] = { + ["id"] = "desecrated.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "desecrated", + }, + [602] = { + ["id"] = "desecrated.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "desecrated", + }, + [603] = { + ["id"] = "desecrated.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "desecrated", + }, + [604] = { + ["id"] = "desecrated.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "desecrated", + }, + [605] = { + ["id"] = "desecrated.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [606] = { + ["id"] = "desecrated.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["type"] = "desecrated", + }, + [607] = { + ["id"] = "desecrated.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["type"] = "desecrated", + }, + [608] = { + ["id"] = "desecrated.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "desecrated", + }, + [609] = { + ["id"] = "desecrated.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["type"] = "desecrated", + }, + [610] = { + ["id"] = "desecrated.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["type"] = "desecrated", + }, + [611] = { + ["id"] = "desecrated.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["type"] = "desecrated", + }, + [612] = { + ["id"] = "desecrated.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "desecrated", + }, + [613] = { + ["id"] = "desecrated.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "desecrated", + }, + [614] = { + ["id"] = "desecrated.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["type"] = "desecrated", + }, + [615] = { + ["id"] = "desecrated.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["type"] = "desecrated", + }, + [616] = { + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "desecrated", + }, + [617] = { + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "desecrated", + }, + [618] = { + ["id"] = "desecrated.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["type"] = "desecrated", + }, + [619] = { + ["id"] = "desecrated.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["type"] = "desecrated", + }, + [620] = { + ["id"] = "desecrated.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "desecrated", + }, + [621] = { + ["id"] = "desecrated.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["type"] = "desecrated", + }, + [622] = { + ["id"] = "desecrated.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "desecrated", + }, + [623] = { + ["id"] = "desecrated.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["type"] = "desecrated", + }, + [624] = { + ["id"] = "desecrated.stat_3161573445", + ["text"] = "Regenerate #% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + ["type"] = "desecrated", + }, + [625] = { + ["id"] = "desecrated.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "desecrated", + }, + [626] = { + ["id"] = "desecrated.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "desecrated", + }, + [627] = { + ["id"] = "desecrated.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "desecrated", + }, + [628] = { + ["id"] = "desecrated.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "desecrated", + }, + [629] = { + ["id"] = "desecrated.stat_2150661403", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["type"] = "desecrated", + }, + [630] = { + ["id"] = "desecrated.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", + ["type"] = "desecrated", + }, + [631] = { + ["id"] = "desecrated.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["type"] = "desecrated", + }, + [632] = { + ["id"] = "desecrated.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "desecrated", + }, + [633] = { + ["id"] = "desecrated.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [634] = { + ["id"] = "desecrated.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [635] = { + ["id"] = "desecrated.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [636] = { + ["id"] = "desecrated.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "desecrated", + }, + [637] = { + ["id"] = "desecrated.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "desecrated", + }, + [638] = { + ["id"] = "desecrated.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "desecrated", + }, + [639] = { + ["id"] = "desecrated.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "desecrated", + }, + [640] = { + ["id"] = "desecrated.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "desecrated", + }, + [641] = { + ["id"] = "desecrated.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "desecrated", + }, + [642] = { + ["id"] = "desecrated.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "desecrated", + }, + [643] = { + ["id"] = "desecrated.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "desecrated", + }, + [644] = { + ["id"] = "desecrated.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "desecrated", + }, + [645] = { + ["id"] = "desecrated.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "desecrated", + }, + [646] = { + ["id"] = "desecrated.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "desecrated", + }, + [647] = { + ["id"] = "desecrated.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "desecrated", + }, + [648] = { + ["id"] = "desecrated.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "desecrated", + }, + [649] = { + ["id"] = "desecrated.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "desecrated", + }, + [650] = { + ["id"] = "desecrated.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "desecrated", + }, + [651] = { + ["id"] = "desecrated.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "desecrated", + }, + [652] = { + ["id"] = "desecrated.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "desecrated", + }, + [653] = { + ["id"] = "desecrated.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "desecrated", + }, + [654] = { + ["id"] = "desecrated.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "desecrated", + }, + [655] = { + ["id"] = "desecrated.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [656] = { + ["id"] = "desecrated.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [657] = { + ["id"] = "desecrated.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "desecrated", + }, + [658] = { + ["id"] = "desecrated.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "desecrated", + }, + [659] = { + ["id"] = "desecrated.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "desecrated", + }, + [660] = { + ["id"] = "desecrated.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [661] = { + ["id"] = "desecrated.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "desecrated", + }, + [662] = { + ["id"] = "desecrated.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "desecrated", + }, + [663] = { + ["id"] = "desecrated.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "desecrated", + }, + [664] = { + ["id"] = "desecrated.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "desecrated", + }, + [665] = { + ["id"] = "desecrated.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "desecrated", + }, + [666] = { + ["id"] = "desecrated.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "desecrated", + }, + [667] = { + ["id"] = "desecrated.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "desecrated", + }, + [668] = { + ["id"] = "desecrated.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "desecrated", + }, + [669] = { + ["id"] = "desecrated.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "desecrated", + }, + [670] = { + ["id"] = "desecrated.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [671] = { + ["id"] = "desecrated.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "desecrated", + }, + [672] = { + ["id"] = "desecrated.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "desecrated", + }, + [673] = { + ["id"] = "desecrated.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [674] = { + ["id"] = "desecrated.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "desecrated", + }, + [675] = { + ["id"] = "desecrated.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "desecrated", + }, + [676] = { + ["id"] = "desecrated.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [677] = { + ["id"] = "desecrated.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "desecrated", + }, + [678] = { + ["id"] = "desecrated.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "desecrated", + }, + [679] = { + ["id"] = "desecrated.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "desecrated", + }, + [680] = { + ["id"] = "desecrated.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "desecrated", + }, + [681] = { + ["id"] = "desecrated.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "desecrated", + }, + [682] = { + ["id"] = "desecrated.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "desecrated", + }, + [683] = { + ["id"] = "desecrated.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "desecrated", + }, + [684] = { + ["id"] = "desecrated.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "desecrated", + }, + [685] = { + ["id"] = "desecrated.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "desecrated", + }, + [686] = { + ["id"] = "desecrated.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "desecrated", + }, + [687] = { + ["id"] = "desecrated.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "desecrated", + }, + [688] = { + ["id"] = "desecrated.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [689] = { + ["id"] = "desecrated.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [690] = { + ["id"] = "desecrated.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "desecrated", + }, + [691] = { + ["id"] = "desecrated.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "desecrated", + }, + [692] = { + ["id"] = "desecrated.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [693] = { + ["id"] = "desecrated.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "desecrated", + }, + [694] = { + ["id"] = "desecrated.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "desecrated", + }, + [695] = { + ["id"] = "desecrated.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "desecrated", + }, + [696] = { + ["id"] = "desecrated.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "desecrated", + }, + [697] = { + ["id"] = "desecrated.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "desecrated", + }, + [698] = { + ["id"] = "desecrated.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [699] = { + ["id"] = "desecrated.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [700] = { + ["id"] = "desecrated.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "desecrated", + }, + [701] = { + ["id"] = "desecrated.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [702] = { + ["id"] = "desecrated.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "desecrated", + }, + [703] = { + ["id"] = "desecrated.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "desecrated", + }, + [704] = { + ["id"] = "desecrated.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [705] = { + ["id"] = "desecrated.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [706] = { + ["id"] = "desecrated.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [707] = { + ["id"] = "desecrated.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [708] = { + ["id"] = "desecrated.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "desecrated", + }, + [709] = { + ["id"] = "desecrated.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "desecrated", + }, + [710] = { + ["id"] = "desecrated.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["type"] = "desecrated", + }, + [711] = { + ["id"] = "desecrated.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [712] = { + ["id"] = "desecrated.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "desecrated", + }, + [713] = { + ["id"] = "desecrated.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "desecrated", + }, + [714] = { + ["id"] = "desecrated.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "desecrated", + }, + [715] = { + ["id"] = "desecrated.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "desecrated", + }, + [716] = { + ["id"] = "desecrated.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "desecrated", + }, + [717] = { + ["id"] = "desecrated.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "desecrated", + }, + [718] = { + ["id"] = "desecrated.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "desecrated", + }, + [719] = { + ["id"] = "desecrated.stat_3007552094", + ["text"] = "You have Unholy Might", + ["type"] = "desecrated", + }, + [720] = { + ["id"] = "desecrated.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["type"] = "desecrated", + }, + [721] = { + ["id"] = "desecrated.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", + ["type"] = "desecrated", + }, + [722] = { + ["id"] = "desecrated.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "desecrated", + }, + }, + ["id"] = "desecrated", + ["label"] = "Desecrated", + }, + [9] = { + ["entries"] = { + [1] = { + ["id"] = "sanctum.stat_2410906123", + ["text"] = "# Resolve Aegis", + ["type"] = "sanctum", + }, + [2] = { + ["id"] = "sanctum.stat_1040593638", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "sanctum", + }, + [3] = { + ["id"] = "sanctum.stat_142859883", + ["text"] = "#% Resolve Mitigation from Enemy Hits", + ["type"] = "sanctum", + }, + [4] = { + ["id"] = "sanctum.stat_3470883829", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "sanctum", + }, + [5] = { + ["id"] = "sanctum.stat_774484840", + ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", + ["type"] = "sanctum", + }, + [6] = { + ["id"] = "sanctum.stat_2155917449", + ["text"] = "#% chance for each of your Keys to upgrade on completing a Floor", + ["type"] = "sanctum", + }, + [7] = { + ["id"] = "sanctum.stat_3870327403", + ["text"] = "#% chance if you were to lose all your Honour to have 1 Honour instead", + ["type"] = "sanctum", + }, + [8] = { + ["id"] = "sanctum.stat_2878762585", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", + ["type"] = "sanctum", + }, + [9] = { + ["id"] = "sanctum.stat_2284543592", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", + ["type"] = "sanctum", + }, + [10] = { + ["id"] = "sanctum.stat_1960517795", + ["text"] = "#% chance to Avoid gaining an Affliction", + ["type"] = "sanctum", + }, + [11] = { + ["id"] = "sanctum.stat_1737465970", + ["text"] = "#% increased Armour", + ["type"] = "sanctum", + }, + [12] = { + ["id"] = "sanctum.stat_1016362888", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "sanctum", + }, + [13] = { + ["id"] = "sanctum.stat_3882471944", + ["text"] = "#% increased Evasion Rating", + ["type"] = "sanctum", + }, + [14] = { + ["id"] = "sanctum.stat_1583320325", + ["text"] = "#% increased Honour restored", + ["type"] = "sanctum", + }, + [15] = { + ["id"] = "sanctum.stat_3096446459", + ["text"] = "#% increased Merchant Prices", + ["type"] = "sanctum", + }, + [16] = { + ["id"] = "sanctum.stat_1416455556", + ["text"] = "#% increased Movement Speed", + ["type"] = "sanctum", + }, + [17] = { + ["id"] = "sanctum.stat_1388771661", + ["text"] = "#% increased Resolve Aegis", + ["type"] = "sanctum", + }, + [18] = { + ["id"] = "sanctum.stat_978111083", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "sanctum", + }, + [19] = { + ["id"] = "sanctum.stat_1798691236", + ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", + ["type"] = "sanctum", + }, + [20] = { + ["id"] = "sanctum.stat_3134588943", + ["text"] = "#% increased chance to avoid Honour loss from Enemy Melee Hits", + ["type"] = "sanctum", + }, + [21] = { + ["id"] = "sanctum.stat_1707887759", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "sanctum", + }, + [22] = { + ["id"] = "sanctum.stat_3970123360", + ["text"] = "#% increased maximum Honour", + ["type"] = "sanctum", + }, + [23] = { + ["id"] = "sanctum.stat_1200789871", + ["text"] = "#% increased maximum Life", + ["type"] = "sanctum", + }, + [24] = { + ["id"] = "sanctum.stat_729354668", + ["text"] = "#% increased quantity of Keys dropped by Monsters", + ["type"] = "sanctum", + }, + [25] = { + ["id"] = "sanctum.stat_1680962389", + ["text"] = "#% increased quantity of Relics dropped by Monsters", + ["type"] = "sanctum", + }, + [26] = { + ["id"] = "sanctum.stat_3128852541", + ["text"] = "#% to All Resistances", + ["type"] = "sanctum", + }, + [27] = { + ["id"] = "sanctum.stat_2287831219", + ["text"] = "#% to Honour Resistance", + ["type"] = "sanctum", + }, + [28] = { + ["id"] = "sanctum.stat_3096543632", + ["text"] = "#% to Maximum Honour Resistance", + ["type"] = "sanctum", + }, + [29] = { + ["id"] = "sanctum.stat_3376488707", + ["text"] = "#% to all Maximum Resistances", + ["type"] = "sanctum", + }, + [30] = { + ["id"] = "sanctum.stat_386901949", + ["text"] = "An additional Room is revealed on the Trial Map", + ["type"] = "sanctum", + }, + [31] = { + ["id"] = "sanctum.stat_1307773596", + ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [32] = { + ["id"] = "sanctum.stat_315260783", + ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [33] = { + ["id"] = "sanctum.stat_1019656601", + ["text"] = "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [34] = { + ["id"] = "sanctum.stat_2207905451", + ["text"] = "Bosses deal #% increased Damage", + ["type"] = "sanctum", + }, + [35] = { + ["id"] = "sanctum.stat_3226329527", + ["text"] = "Bosses take #% increased Damage", + ["type"] = "sanctum", + }, + [36] = { + ["id"] = "sanctum.stat_1512067281", + ["text"] = "Cannot be used with Trials below level #", + ["type"] = "sanctum", + }, + [37] = { + ["id"] = "sanctum.stat_2283325632", + ["text"] = "Cannot have Boons", + ["type"] = "sanctum", + }, + [38] = { + ["id"] = "sanctum.stat_2545161750", + ["text"] = "Cannot restore Honour", + ["type"] = "sanctum", + }, + [39] = { + ["id"] = "sanctum.stat_2150725270", + ["text"] = "Damage taken cannot be Absorbed", + ["type"] = "sanctum", + }, + [40] = { + ["id"] = "sanctum.stat_502549687", + ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [41] = { + ["id"] = "sanctum.stat_2363402715", + ["text"] = "Fountains have #% chance to grant double Sacred Water", + ["type"] = "sanctum", + }, + [42] = { + ["id"] = "sanctum.stat_2393318075", + ["text"] = "Gain # Sacred Water at the start of the Trial", + ["type"] = "sanctum", + }, + [43] = { + ["id"] = "sanctum.stat_4057192895", + ["text"] = "Gain # Sacred Water when you complete a Room", + ["type"] = "sanctum", + }, + [44] = { + ["id"] = "sanctum.sanctum_effect_0", + ["text"] = "Has ", + ["type"] = "sanctum", + }, + [45] = { + ["id"] = "sanctum.sanctum_effect_59406", + ["text"] = "Has Adrenaline Vial", + ["type"] = "sanctum", + }, + [46] = { + ["id"] = "sanctum.sanctum_effect_47837", + ["text"] = "Has Ahkeli's Guard", + ["type"] = "sanctum", + }, + [47] = { + ["id"] = "sanctum.sanctum_effect_9121", + ["text"] = "Has All-Seeing Eye", + ["type"] = "sanctum", + }, + [48] = { + ["id"] = "sanctum.sanctum_effect_6090", + ["text"] = "Has Assassin's Blade", + ["type"] = "sanctum", + }, + [49] = { + ["id"] = "sanctum.sanctum_effect_52622", + ["text"] = "Has Balbala's Gift", + ["type"] = "sanctum", + }, + [50] = { + ["id"] = "sanctum.sanctum_effect_41498", + ["text"] = "Has Black Pearl", + ["type"] = "sanctum", + }, + [51] = { + ["id"] = "sanctum.sanctum_effect_34448", + ["text"] = "Has Black Smoke", + ["type"] = "sanctum", + }, + [52] = { + ["id"] = "sanctum.sanctum_effect_40008", + ["text"] = "Has Blunt Sword", + ["type"] = "sanctum", + }, + [53] = { + ["id"] = "sanctum.sanctum_effect_19039", + ["text"] = "Has Branded Balbalakh", + ["type"] = "sanctum", + }, + [54] = { + ["id"] = "sanctum.sanctum_effect_25062", + ["text"] = "Has Chains of Binding", + ["type"] = "sanctum", + }, + [55] = { + ["id"] = "sanctum.sanctum_effect_60796", + ["text"] = "Has Chipped Dice", + ["type"] = "sanctum", + }, + [56] = { + ["id"] = "sanctum.sanctum_effect_6958", + ["text"] = "Has Chiselled Stone", + ["type"] = "sanctum", + }, + [57] = { + ["id"] = "sanctum.sanctum_effect_55502", + ["text"] = "Has Corrosive Concoction", + ["type"] = "sanctum", + }, + [58] = { + ["id"] = "sanctum.sanctum_effect_32085", + ["text"] = "Has Costly Aid", + ["type"] = "sanctum", + }, + [59] = { + ["id"] = "sanctum.sanctum_effect_30042", + ["text"] = "Has Crystal Shard", + ["type"] = "sanctum", + }, + [60] = { + ["id"] = "sanctum.sanctum_effect_62584", + ["text"] = "Has Dark Pit", + ["type"] = "sanctum", + }, + [61] = { + ["id"] = "sanctum.sanctum_effect_41921", + ["text"] = "Has Deadly Snare", + ["type"] = "sanctum", + }, + [62] = { + ["id"] = "sanctum.sanctum_effect_59642", + ["text"] = "Has Death Toll", + ["type"] = "sanctum", + }, + [63] = { + ["id"] = "sanctum.sanctum_effect_14131", + ["text"] = "Has Deceptive Mirror", + ["type"] = "sanctum", + }, + [64] = { + ["id"] = "sanctum.sanctum_effect_13598", + ["text"] = "Has Dekhara's Necklace", + ["type"] = "sanctum", + }, + [65] = { + ["id"] = "sanctum.sanctum_effect_5501", + ["text"] = "Has Dishonoured Tattoo", + ["type"] = "sanctum", + }, + [66] = { + ["id"] = "sanctum.sanctum_effect_45401", + ["text"] = "Has Diverted River", + ["type"] = "sanctum", + }, + [67] = { + ["id"] = "sanctum.sanctum_effect_24603", + ["text"] = "Has Earned Honour", + ["type"] = "sanctum", + }, + [68] = { + ["id"] = "sanctum.sanctum_effect_38167", + ["text"] = "Has Enchanted Urn", + ["type"] = "sanctum", + }, + [69] = { + ["id"] = "sanctum.sanctum_effect_35912", + ["text"] = "Has Exhausted Wells", + ["type"] = "sanctum", + }, + [70] = { + ["id"] = "sanctum.sanctum_effect_28313", + ["text"] = "Has Fiendish Wings", + ["type"] = "sanctum", + }, + [71] = { + ["id"] = "sanctum.sanctum_effect_44476", + ["text"] = "Has Flooding Rivers", + ["type"] = "sanctum", + }, + [72] = { + ["id"] = "sanctum.sanctum_effect_18125", + ["text"] = "Has Forgotten Traditions", + ["type"] = "sanctum", + }, + [73] = { + ["id"] = "sanctum.sanctum_effect_40142", + ["text"] = "Has Fountain of Youth", + ["type"] = "sanctum", + }, + [74] = { + ["id"] = "sanctum.sanctum_effect_15442", + ["text"] = "Has Fright Mask", + ["type"] = "sanctum", + }, + [75] = { + ["id"] = "sanctum.sanctum_effect_38171", + ["text"] = "Has Garukhan's Favour", + ["type"] = "sanctum", + }, + [76] = { + ["id"] = "sanctum.sanctum_effect_35767", + ["text"] = "Has Gate Toll", + ["type"] = "sanctum", + }, + [77] = { + ["id"] = "sanctum.sanctum_effect_32300", + ["text"] = "Has Ghastly Scythe", + ["type"] = "sanctum", + }, + [78] = { + ["id"] = "sanctum.sanctum_effect_45600", + ["text"] = "Has Glass Shard", + ["type"] = "sanctum", + }, + [79] = { + ["id"] = "sanctum.sanctum_effect_3157", + ["text"] = "Has Glowing Orb", + ["type"] = "sanctum", + }, + [80] = { + ["id"] = "sanctum.sanctum_effect_1198", + ["text"] = "Has Golden Smoke", + ["type"] = "sanctum", + }, + [81] = { + ["id"] = "sanctum.sanctum_effect_34171", + ["text"] = "Has Haemorrhage", + ["type"] = "sanctum", + }, + [82] = { + ["id"] = "sanctum.sanctum_effect_13820", + ["text"] = "Has Hare Foot", + ["type"] = "sanctum", + }, + [83] = { + ["id"] = "sanctum.sanctum_effect_28826", + ["text"] = "Has Holy Water", + ["type"] = "sanctum", + }, + [84] = { + ["id"] = "sanctum.sanctum_effect_62326", + ["text"] = "Has Honed Claws", + ["type"] = "sanctum", + }, + [85] = { + ["id"] = "sanctum.sanctum_effect_4682", + ["text"] = "Has Honoured Challenger", + ["type"] = "sanctum", + }, + [86] = { + ["id"] = "sanctum.sanctum_effect_359", + ["text"] = "Has Hungry Fangs", + ["type"] = "sanctum", + }, + [87] = { + ["id"] = "sanctum.sanctum_effect_44836", + ["text"] = "Has Imperial Seal", + ["type"] = "sanctum", + }, + [88] = { + ["id"] = "sanctum.sanctum_effect_35578", + ["text"] = "Has Iron Manacles", + ["type"] = "sanctum", + }, + [89] = { + ["id"] = "sanctum.sanctum_effect_61003", + ["text"] = "Has Leaking Waterskin", + ["type"] = "sanctum", + }, + [90] = { + ["id"] = "sanctum.sanctum_effect_21680", + ["text"] = "Has Low Rivers", + ["type"] = "sanctum", + }, + [91] = { + ["id"] = "sanctum.sanctum_effect_379", + ["text"] = "Has Lustrous Lacquer", + ["type"] = "sanctum", + }, + [92] = { + ["id"] = "sanctum.sanctum_effect_51140", + ["text"] = "Has Lustrous Pearl", + ["type"] = "sanctum", + }, + [93] = { + ["id"] = "sanctum.sanctum_effect_45428", + ["text"] = "Has Mirror of Fortune", + ["type"] = "sanctum", + }, + [94] = { + ["id"] = "sanctum.sanctum_effect_30866", + ["text"] = "Has Moment's Peace", + ["type"] = "sanctum", + }, + [95] = { + ["id"] = "sanctum.sanctum_effect_56996", + ["text"] = "Has Myriad Aspersions", + ["type"] = "sanctum", + }, + [96] = { + ["id"] = "sanctum.sanctum_effect_43834", + ["text"] = "Has Orb of Negation", + ["type"] = "sanctum", + }, + [97] = { + ["id"] = "sanctum.sanctum_effect_54204", + ["text"] = "Has Orbala Statuette", + ["type"] = "sanctum", + }, + [98] = { + ["id"] = "sanctum.sanctum_effect_44077", + ["text"] = "Has Orbala's Leathers", + ["type"] = "sanctum", + }, + [99] = { + ["id"] = "sanctum.sanctum_effect_29924", + ["text"] = "Has Ornate Dagger", + ["type"] = "sanctum", + }, + [100] = { + ["id"] = "sanctum.sanctum_effect_48548", + ["text"] = "Has Pledge to the Afflicted", + ["type"] = "sanctum", + }, + [101] = { + ["id"] = "sanctum.sanctum_effect_60079", + ["text"] = "Has Pledge to the Deserted", + ["type"] = "sanctum", + }, + [102] = { + ["id"] = "sanctum.sanctum_effect_62382", + ["text"] = "Has Pledge to the Guileful", + ["type"] = "sanctum", + }, + [103] = { + ["id"] = "sanctum.sanctum_effect_27532", + ["text"] = "Has Pledge to the Powerful", + ["type"] = "sanctum", + }, + [104] = { + ["id"] = "sanctum.sanctum_effect_28906", + ["text"] = "Has Purple Smoke", + ["type"] = "sanctum", + }, + [105] = { + ["id"] = "sanctum.sanctum_effect_31580", + ["text"] = "Has Raincaller", + ["type"] = "sanctum", + }, + [106] = { + ["id"] = "sanctum.sanctum_effect_56047", + ["text"] = "Has Rapid Quicksand", + ["type"] = "sanctum", + }, + [107] = { + ["id"] = "sanctum.sanctum_effect_17084", + ["text"] = "Has Red Smoke", + ["type"] = "sanctum", + }, + [108] = { + ["id"] = "sanctum.sanctum_effect_46242", + ["text"] = "Has Reparations", + ["type"] = "sanctum", + }, + [109] = { + ["id"] = "sanctum.sanctum_effect_30450", + ["text"] = "Has Rusted Mallet", + ["type"] = "sanctum", + }, + [110] = { + ["id"] = "sanctum.sanctum_effect_27130", + ["text"] = "Has Sacred Mirror", + ["type"] = "sanctum", + }, + [111] = { + ["id"] = "sanctum.sanctum_effect_41741", + ["text"] = "Has Sanguine Vial", + ["type"] = "sanctum", + }, + [112] = { + ["id"] = "sanctum.sanctum_effect_44243", + ["text"] = "Has Scrying Crystal", + ["type"] = "sanctum", + }, + [113] = { + ["id"] = "sanctum.sanctum_effect_35605", + ["text"] = "Has Season of Famine", + ["type"] = "sanctum", + }, + [114] = { + ["id"] = "sanctum.sanctum_effect_34499", + ["text"] = "Has Sekhema's Cloak", + ["type"] = "sanctum", + }, + [115] = { + ["id"] = "sanctum.sanctum_effect_48487", + ["text"] = "Has Sharpened Arrowhead", + ["type"] = "sanctum", + }, + [116] = { + ["id"] = "sanctum.sanctum_effect_16335", + ["text"] = "Has Shattered Shield", + ["type"] = "sanctum", + }, + [117] = { + ["id"] = "sanctum.sanctum_effect_51458", + ["text"] = "Has Silver Chalice", + ["type"] = "sanctum", + }, + [118] = { + ["id"] = "sanctum.sanctum_effect_24536", + ["text"] = "Has Silver Tongue", + ["type"] = "sanctum", + }, + [119] = { + ["id"] = "sanctum.sanctum_effect_53929", + ["text"] = "Has Spiked Exit", + ["type"] = "sanctum", + }, + [120] = { + ["id"] = "sanctum.sanctum_effect_13875", + ["text"] = "Has Spiked Shell", + ["type"] = "sanctum", + }, + [121] = { + ["id"] = "sanctum.sanctum_effect_9350", + ["text"] = "Has Suspected Sympathiser", + ["type"] = "sanctum", + }, + [122] = { + ["id"] = "sanctum.sanctum_effect_48875", + ["text"] = "Has Tattered Blindfold", + ["type"] = "sanctum", + }, + [123] = { + ["id"] = "sanctum.sanctum_effect_34561", + ["text"] = "Has Trade Tariff", + ["type"] = "sanctum", + }, + [124] = { + ["id"] = "sanctum.sanctum_effect_55120", + ["text"] = "Has Tradition's Demand", + ["type"] = "sanctum", + }, + [125] = { + ["id"] = "sanctum.sanctum_effect_16773", + ["text"] = "Has UNUSED", + ["type"] = "sanctum", + }, + [126] = { + ["id"] = "sanctum.sanctum_effect_50613", + ["text"] = "Has Unassuming Brick", + ["type"] = "sanctum", + }, + [127] = { + ["id"] = "sanctum.sanctum_effect_38381", + ["text"] = "Has Unquenched Thirst", + ["type"] = "sanctum", + }, + [128] = { + ["id"] = "sanctum.sanctum_effect_9853", + ["text"] = "Has Untouchable", + ["type"] = "sanctum", + }, + [129] = { + ["id"] = "sanctum.sanctum_effect_3716", + ["text"] = "Has Upward Path", + ["type"] = "sanctum", + }, + [130] = { + ["id"] = "sanctum.sanctum_effect_43384", + ["text"] = "Has Veiled Sight", + ["type"] = "sanctum", + }, + [131] = { + ["id"] = "sanctum.sanctum_effect_57507", + ["text"] = "Has Viscous Ichor", + ["type"] = "sanctum", + }, + [132] = { + ["id"] = "sanctum.sanctum_effect_24131", + ["text"] = "Has Weakened Flesh", + ["type"] = "sanctum", + }, + [133] = { + ["id"] = "sanctum.sanctum_effect_20573", + ["text"] = "Has Winter Drought", + ["type"] = "sanctum", + }, + [134] = { + ["id"] = "sanctum.sanctum_effect_46977", + ["text"] = "Has Wooden Effigy", + ["type"] = "sanctum", + }, + [135] = { + ["id"] = "sanctum.sanctum_effect_30473", + ["text"] = "Has Worn Sandals", + ["type"] = "sanctum", + }, + [136] = { + ["id"] = "sanctum.stat_2948404493", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "sanctum", + }, + [137] = { + ["id"] = "sanctum.stat_4191312223", + ["text"] = "Maximum Honour is 1", + ["type"] = "sanctum", + }, + [138] = { + ["id"] = "sanctum.stat_1890519597", + ["text"] = "Monsters deal #% increased Damage", + ["type"] = "sanctum", + }, + [139] = { + ["id"] = "sanctum.stat_231205265", + ["text"] = "Monsters have #% chance to drop double Sacred Water", + ["type"] = "sanctum", + }, + [140] = { + ["id"] = "sanctum.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "sanctum", + }, + [141] = { + ["id"] = "sanctum.stat_3114474137", + ["text"] = "Monsters take #% increased Damage", + ["type"] = "sanctum", + }, + [142] = { + ["id"] = "sanctum.stat_199414195", + ["text"] = "Rare Monsters deal #% increased Damage", + ["type"] = "sanctum", + }, + [143] = { + ["id"] = "sanctum.stat_408585189", + ["text"] = "Rare Monsters take #% increased Damage", + ["type"] = "sanctum", + }, + [144] = { + ["id"] = "sanctum.stat_3889616543", + ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", + ["type"] = "sanctum", + }, + [145] = { + ["id"] = "sanctum.stat_3621177126", + ["text"] = "Resolve Mitigation from Enemy Hits is based on #% of Armour", + ["type"] = "sanctum", + }, + [146] = { + ["id"] = "sanctum.stat_3865020351", + ["text"] = "Restore # Honour on killing a Boss", + ["type"] = "sanctum", + }, + [147] = { + ["id"] = "sanctum.stat_521869848", + ["text"] = "Restore # Honour on picking up a Key", + ["type"] = "sanctum", + }, + [148] = { + ["id"] = "sanctum.stat_2114314842", + ["text"] = "Restore # Honour on room completion", + ["type"] = "sanctum", + }, + [149] = { + ["id"] = "sanctum.stat_2492340460", + ["text"] = "Restore # Honour on venerating a Maraketh Shrine", + ["type"] = "sanctum", + }, + [150] = { + ["id"] = "sanctum.stat_3237367570", + ["text"] = "Rooms are unknown on the Trial Map", + ["type"] = "sanctum", + }, + [151] = { + ["id"] = "sanctum.stat_1175354969", + ["text"] = "The Herald of the Scourge drops an additional Invocation", + ["type"] = "sanctum", + }, + [152] = { + ["id"] = "sanctum.stat_290775436", + ["text"] = "The Merchant has an additional Choice", + ["type"] = "sanctum", + }, + [153] = { + ["id"] = "sanctum.stat_3182333322", + ["text"] = "This item is destroyed when applied to a Trial", + ["type"] = "sanctum", + }, + [154] = { + ["id"] = "sanctum.stat_3554921410", + ["text"] = "Traps deal #% increased Damage", + ["type"] = "sanctum", + }, + [155] = { + ["id"] = "sanctum.stat_3170238729", + ["text"] = "When you gain a Key #% chance to gain another", + ["type"] = "sanctum", + }, + [156] = { + ["id"] = "sanctum.stat_698936647", + ["text"] = "Your Armour, Evasion and Energy Shield are zero", + ["type"] = "sanctum", + }, + [157] = { + ["id"] = "sanctum.stat_2149490821", + ["text"] = "Zarokh, the Temporal deals #% more Damage", + ["type"] = "sanctum", + }, + [158] = { + ["id"] = "sanctum.stat_3840591093", + ["text"] = "Zarokh, the Temporal drops Against the Darkness", + ["type"] = "sanctum", + }, + [159] = { + ["id"] = "sanctum.stat_767926824", + ["text"] = "Zarokh, the Temporal drops Blessed Bonds", + ["type"] = "sanctum", + }, + [160] = { + ["id"] = "sanctum.stat_3059754769", + ["text"] = "Zarokh, the Temporal drops Sandstorm Visage", + ["type"] = "sanctum", + }, + [161] = { + ["id"] = "sanctum.stat_2821715641", + ["text"] = "Zarokh, the Temporal drops Sekhema's Resolve", + ["type"] = "sanctum", + }, + [162] = { + ["id"] = "sanctum.stat_2469854926", + ["text"] = "Zarokh, the Temporal drops Temporalis", + ["type"] = "sanctum", + }, + [163] = { + ["id"] = "sanctum.stat_3878191575", + ["text"] = "Zarokh, the Temporal drops an additional Barya", + ["type"] = "sanctum", + }, + [164] = { + ["id"] = "sanctum.stat_2226900052", + ["text"] = "Zarokh, the Temporal takes #% more Damage", + ["type"] = "sanctum", + }, + }, + ["id"] = "sanctum", + ["label"] = "Sanctum", + }, + [10] = { + ["entries"] = { + [1] = { + ["id"] = "skill.alchemists_boon", + ["text"] = "Grants Skill: Level # Alchemist's Boon", + ["type"] = "skill", + }, + [2] = { + ["id"] = "skill.archmage", + ["text"] = "Grants Skill: Level # Archmage", + ["type"] = "skill", + }, + [3] = { + ["id"] = "skill.new_new_arctic_armour", + ["text"] = "Grants Skill: Level # Arctic Armour", + ["type"] = "skill", + }, + [4] = { + ["id"] = "skill.attrition", + ["text"] = "Grants Skill: Level # Attrition", + ["type"] = "skill", + }, + [5] = { + ["id"] = "skill.azmerian_swarm", + ["text"] = "Grants Skill: Level # Azmerian Swarms", + ["type"] = "skill", + }, + [6] = { + ["id"] = "skill.summon_azmerian_wolf", + ["text"] = "Grants Skill: Level # Azmerian Wolf", + ["type"] = "skill", + }, + [7] = { + ["id"] = "skill.barkskin", + ["text"] = "Grants Skill: Level # Barkskin", + ["type"] = "skill", + }, + [8] = { + ["id"] = "skill.barrier_invocation", + ["text"] = "Grants Skill: Level # Barrier Invocation", + ["type"] = "skill", + }, + [9] = { + ["id"] = "skill.berserk", + ["text"] = "Grants Skill: Level # Berserk", + ["type"] = "skill", + }, + [10] = { + ["id"] = "skill.black_powder_blitz_reservation", + ["text"] = "Grants Skill: Level # Black Powder Blitz", + ["type"] = "skill", + }, + [11] = { + ["id"] = "skill.blink_reservation", + ["text"] = "Grants Skill: Level # Blink", + ["type"] = "skill", + }, + [12] = { + ["id"] = "skill.blink", + ["text"] = "Grants Skill: Level # Blink", + ["type"] = "skill", + }, + [13] = { + ["id"] = "skill.bone_blast", + ["text"] = "Grants Skill: Level # Bone Blast", + ["type"] = "skill", + }, + [14] = { + ["id"] = "skill.briarpatch", + ["text"] = "Grants Skill: Level # Briarpatch", + ["type"] = "skill", + }, + [15] = { + ["id"] = "skill.exploding_poison_toad", + ["text"] = "Grants Skill: Level # Bursting Fen Toad", + ["type"] = "skill", + }, + [16] = { + ["id"] = "skill.hyena_cackle", + ["text"] = "Grants Skill: Level # Cackling Companions", + ["type"] = "skill", + }, + [17] = { + ["id"] = "skill.cast_on_block", + ["text"] = "Grants Skill: Level # Cast on Block", + ["type"] = "skill", + }, + [18] = { + ["id"] = "skill.cast_on_charm_use", + ["text"] = "Grants Skill: Level # Cast on Charm Use", + ["type"] = "skill", + }, + [19] = { + ["id"] = "skill.cast_on_critical_strike", + ["text"] = "Grants Skill: Level # Cast on Critical", + ["type"] = "skill", + }, + [20] = { + ["id"] = "skill.cast_on_dodge", + ["text"] = "Grants Skill: Level # Cast on Dodge", + ["type"] = "skill", + }, + [21] = { + ["id"] = "skill.cast_on_elemental_ailment", + ["text"] = "Grants Skill: Level # Cast on Elemental Ailment", + ["type"] = "skill", + }, + [22] = { + ["id"] = "skill.cast_on_minion_death", + ["text"] = "Grants Skill: Level # Cast on Minion Death", + ["type"] = "skill", + }, + [23] = { + ["id"] = "skill.chaosbolt", + ["text"] = "Grants Skill: Level # Chaos Bolt", + ["type"] = "skill", + }, + [24] = { + ["id"] = "skill.chaos_surge", + ["text"] = "Grants Skill: Level # Chaotic Surge", + ["type"] = "skill", + }, + [25] = { + ["id"] = "skill.charge_regulation", + ["text"] = "Grants Skill: Level # Charge Regulation", + ["type"] = "skill", + }, + [26] = { + ["id"] = "skill.coiling_bolts", + ["text"] = "Grants Skill: Level # Coiling Bolts", + ["type"] = "skill", + }, + [27] = { + ["id"] = "skill.combat_frenzy", + ["text"] = "Grants Skill: Level # Combat Frenzy", + ["type"] = "skill", + }, + [28] = { + ["id"] = "skill.requiem_ammo", + ["text"] = "Grants Skill: Level # Compose Requiem", + ["type"] = "skill", + }, + [29] = { + ["id"] = "skill.consecrate", + ["text"] = "Grants Skill: Level # Consecrate", + ["type"] = "skill", + }, + [30] = { + ["id"] = "skill.convalescence", + ["text"] = "Grants Skill: Level # Convalescence", + ["type"] = "skill", + }, + [31] = { + ["id"] = "skill.crackling_palm", + ["text"] = "Grants Skill: Level # Crackling Palm", + ["type"] = "skill", + }, + [32] = { + ["id"] = "skill.crushing_fear", + ["text"] = "Grants Skill: Level # Crushing Fear", + ["type"] = "skill", + }, + [33] = { + ["id"] = "skill.corpse_cloud", + ["text"] = "Grants Skill: Level # Decompose", + ["type"] = "skill", + }, + [34] = { + ["id"] = "skill.corpse_cloud_triggered", + ["text"] = "Grants Skill: Level # Decompose", + ["type"] = "skill", + }, + [35] = { + ["id"] = "skill.defiance_banner_reservation", + ["text"] = "Grants Skill: Level # Defiance Banner", + ["type"] = "skill", + }, + [36] = { + ["id"] = "skill.discipline", + ["text"] = "Grants Skill: Level # Discipline", + ["type"] = "skill", + }, + [37] = { + ["id"] = "skill.dread_banner_reservation", + ["text"] = "Grants Skill: Level # Dread Banner", + ["type"] = "skill", + }, + [38] = { + ["id"] = "skill.elemental_conflux", + ["text"] = "Grants Skill: Level # Elemental Conflux", + ["type"] = "skill", + }, + [39] = { + ["id"] = "skill.elemental_invocation", + ["text"] = "Grants Skill: Level # Elemental Invocation", + ["type"] = "skill", + }, + [40] = { + ["id"] = "skill.unique_dusk_vigil_triggered_blazing_cluster", + ["text"] = "Grants Skill: Level # Ember Fusillade", + ["type"] = "skill", + }, + [41] = { + ["id"] = "skill.enervating_nova", + ["text"] = "Grants Skill: Level # Enervating Nova", + ["type"] = "skill", + }, + [42] = { + ["id"] = "skill.eternal_rage", + ["text"] = "Grants Skill: Level # Eternal Rage", + ["type"] = "skill", + }, + [43] = { + ["id"] = "skill.feast_of_flesh", + ["text"] = "Grants Skill: Level # Feast of Flesh", + ["type"] = "skill", + }, + [44] = { + ["id"] = "skill.feral_invocation", + ["text"] = "Grants Skill: Level # Feral Invocation", + ["type"] = "skill", + }, + [45] = { + ["id"] = "skill.fireball", + ["text"] = "Grants Skill: Level # Fireball", + ["type"] = "skill", + }, + [46] = { + ["id"] = "skill.firebolt", + ["text"] = "Grants Skill: Level # Firebolt", + ["type"] = "skill", + }, + [47] = { + ["id"] = "skill.freezing_shards", + ["text"] = "Grants Skill: Level # Freezing Shards", + ["type"] = "skill", + }, + [48] = { + ["id"] = "skill.fulmination", + ["text"] = "Grants Skill: Level # Fulmination", + ["type"] = "skill", + }, + [49] = { + ["id"] = "skill.future_past", + ["text"] = "Grants Skill: Level # Future-Past", + ["type"] = "skill", + }, + [50] = { + ["id"] = "skill.galvanic_field", + ["text"] = "Grants Skill: Level # Galvanic Field", + ["type"] = "skill", + }, + [51] = { + ["id"] = "skill.gemini_surge", + ["text"] = "Grants Skill: Level # Gemini Surge", + ["type"] = "skill", + }, + [52] = { + ["id"] = "skill.ghost_dance", + ["text"] = "Grants Skill: Level # Ghost Dance", + ["type"] = "skill", + }, + [53] = { + ["id"] = "skill.harbinger_of_madness", + ["text"] = "Grants Skill: Level # Harbinger of Madness", + ["type"] = "skill", + }, + [54] = { + ["id"] = "skill.heart_of_ice", + ["text"] = "Grants Skill: Level # Heart of Ice", + ["type"] = "skill", + }, + [55] = { + ["id"] = "skill.herald_of_ash", + ["text"] = "Grants Skill: Level # Herald of Ash", + ["type"] = "skill", + }, + [56] = { + ["id"] = "skill.herald_of_blood", + ["text"] = "Grants Skill: Level # Herald of Blood", + ["type"] = "skill", + }, + [57] = { + ["id"] = "skill.herald_of_ice", + ["text"] = "Grants Skill: Level # Herald of Ice", + ["type"] = "skill", + }, + [58] = { + ["id"] = "skill.herald_of_plague", + ["text"] = "Grants Skill: Level # Herald of Plague", + ["type"] = "skill", + }, + [59] = { + ["id"] = "skill.herald_of_thunder", + ["text"] = "Grants Skill: Level # Herald of Thunder", + ["type"] = "skill", + }, + [60] = { + ["id"] = "skill.atziri_herald", + ["text"] = "Grants Skill: Level # Herald of the Royal Queen", + ["type"] = "skill", + }, + [61] = { + ["id"] = "skill.his_foul_emergence", + ["text"] = "Grants Skill: Level # His Foul Emergence", + ["type"] = "skill", + }, + [62] = { + ["id"] = "skill.grave_command", + ["text"] = "Grants Skill: Level # His Grave Command", + ["type"] = "skill", + }, + [63] = { + ["id"] = "skill.scattering_calamity", + ["text"] = "Grants Skill: Level # His Scattering Calamity", + ["type"] = "skill", + }, + [64] = { + ["id"] = "skill.vile_disruption", + ["text"] = "Grants Skill: Level # His Vile Intrusion", + ["type"] = "skill", + }, + [65] = { + ["id"] = "skill.his_winnowing_flame", + ["text"] = "Grants Skill: Level # His Winnowing Flame", + ["type"] = "skill", + }, + [66] = { + ["id"] = "skill.icestorm", + ["text"] = "Grants Skill: Level # Icestorm", + ["type"] = "skill", + }, + [67] = { + ["id"] = "skill.impurity", + ["text"] = "Grants Skill: Level # Impurity", + ["type"] = "skill", + }, + [68] = { + ["id"] = "skill.iron_ward", + ["text"] = "Grants Skill: Level # Iron Ward", + ["type"] = "skill", + }, + [69] = { + ["id"] = "skill.life_remnants", + ["text"] = "Grants Skill: Level # Life Remnants", + ["type"] = "skill", + }, + [70] = { + ["id"] = "skill.unique_breach_lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", + ["type"] = "skill", + }, + [71] = { + ["id"] = "skill.lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", + ["type"] = "skill", + }, + [72] = { + ["id"] = "skill.lingering_illusion", + ["text"] = "Grants Skill: Level # Lingering Illusion", + ["type"] = "skill", + }, + [73] = { + ["id"] = "skill.living_bomb_player", + ["text"] = "Grants Skill: Level # Living Bomb", + ["type"] = "skill", + }, + [74] = { + ["id"] = "skill.magma_barrier", + ["text"] = "Grants Skill: Level # Magma Barrier", + ["type"] = "skill", + }, + [75] = { + ["id"] = "skill.malice", + ["text"] = "Grants Skill: Level # Malice", + ["type"] = "skill", + }, + [76] = { + ["id"] = "skill.mana_drain", + ["text"] = "Grants Skill: Level # Mana Drain", + ["type"] = "skill", + }, + [77] = { + ["id"] = "skill.mana_remnants", + ["text"] = "Grants Skill: Level # Mana Remnants", + ["type"] = "skill", + }, + [78] = { + ["id"] = "skill.midnight_star", + ["text"] = "Grants Skill: Level # Midnight Zenith", + ["type"] = "skill", + }, + [79] = { + ["id"] = "skill.mirage_archer", + ["text"] = "Grants Skill: Level # Mirage Archer", + ["type"] = "skill", + }, + [80] = { + ["id"] = "skill.mirror_of_refraction", + ["text"] = "Grants Skill: Level # Mirror of Refraction", + ["type"] = "skill", + }, + [81] = { + ["id"] = "skill.summon_mist_raven", + ["text"] = "Grants Skill: Level # Mist Raven", + ["type"] = "skill", + }, + [82] = { + ["id"] = "skill.molten_crash", + ["text"] = "Grants Skill: Level # Molten Crash", + ["type"] = "skill", + }, + [83] = { + ["id"] = "skill.triggered_molten_shower", + ["text"] = "Grants Skill: Level # Molten Shower", + ["type"] = "skill", + }, + [84] = { + ["id"] = "skill.overwhelming_presence", + ["text"] = "Grants Skill: Level # Overwhelming Presence", + ["type"] = "skill", + }, + [85] = { + ["id"] = "skill.parry", + ["text"] = "Grants Skill: Level # Parry", + ["type"] = "skill", + }, + [86] = { + ["id"] = "skill.phantasmal_arrow", + ["text"] = "Grants Skill: Level # Phantasmal Arrow", + ["type"] = "skill", + }, + [87] = { + ["id"] = "skill.pinnacle_of_power", + ["text"] = "Grants Skill: Level # Pinnacle of Power", + ["type"] = "skill", + }, + [88] = { + ["id"] = "skill.plague_bearer", + ["text"] = "Grants Skill: Level # Plague Bearer", + ["type"] = "skill", + }, + [89] = { + ["id"] = "skill.power_siphon", + ["text"] = "Grants Skill: Level # Power Siphon", + ["type"] = "skill", + }, + [90] = { + ["id"] = "skill.purity_of_fire", + ["text"] = "Grants Skill: Level # Purity of Fire", + ["type"] = "skill", + }, + [91] = { + ["id"] = "skill.purity_of_ice", + ["text"] = "Grants Skill: Level # Purity of Ice", + ["type"] = "skill", + }, + [92] = { + ["id"] = "skill.purity_of_lightning", + ["text"] = "Grants Skill: Level # Purity of Lightning", + ["type"] = "skill", + }, + [93] = { + ["id"] = "skill.raging_spirits", + ["text"] = "Grants Skill: Level # Raging Spirits", + ["type"] = "skill", + }, + [94] = { + ["id"] = "skill.shield_block", + ["text"] = "Grants Skill: Level # Raise Shield", + ["type"] = "skill", + }, + [95] = { + ["id"] = "skill.ravenous_swarm", + ["text"] = "Grants Skill: Level # Ravenous Swarm", + ["type"] = "skill", + }, + [96] = { + ["id"] = "skill.reap", + ["text"] = "Grants Skill: Level # Reap", + ["type"] = "skill", + }, + [97] = { + ["id"] = "skill.reapers_invocation", + ["text"] = "Grants Skill: Level # Reaper's Invocation", + ["type"] = "skill", + }, + [98] = { + ["id"] = "skill.summon_rhoa_mount", + ["text"] = "Grants Skill: Level # Rhoa Mount", + ["type"] = "skill", + }, + [99] = { + ["id"] = "skill.righteous_descent", + ["text"] = "Grants Skill: Level # Righteous Descent", + ["type"] = "skill", + }, + [100] = { + ["id"] = "skill.sigil_of_life", + ["text"] = "Grants Skill: Level # Rite of Restoration", + ["type"] = "skill", + }, + [101] = { + ["id"] = "skill.runic_tempering", + ["text"] = "Grants Skill: Level # Runic Tempering", + ["type"] = "skill", + }, + [102] = { + ["id"] = "skill.sacrifice", + ["text"] = "Grants Skill: Level # Sacrifice", + ["type"] = "skill", + }, + [103] = { + ["id"] = "skill.sanguine_revelry", + ["text"] = "Grants Skill: Level # Sanguine Revelry", + ["type"] = "skill", + }, + [104] = { + ["id"] = "skill.savage_fury", + ["text"] = "Grants Skill: Level # Savage Fury", + ["type"] = "skill", + }, + [105] = { + ["id"] = "skill.scavenged_plating", + ["text"] = "Grants Skill: Level # Scavenged Plating", + ["type"] = "skill", + }, + [106] = { + ["id"] = "skill.shard_scavenger", + ["text"] = "Grants Skill: Level # Shard Scavenger", + ["type"] = "skill", + }, + [107] = { + ["id"] = "skill.shattering_spite", + ["text"] = "Grants Skill: Level # Shattering Spite", + ["type"] = "skill", + }, + [108] = { + ["id"] = "skill.sigil_of_power", + ["text"] = "Grants Skill: Level # Sigil of Power", + ["type"] = "skill", + }, + [109] = { + ["id"] = "skill.siphon_elements", + ["text"] = "Grants Skill: Level # Siphon Elements", + ["type"] = "skill", + }, + [110] = { + ["id"] = "skill.summon_skeleton_warrior", + ["text"] = "Grants Skill: Level # Skeletal Warrior Minion", + ["type"] = "skill", + }, + [111] = { + ["id"] = "skill.nightfall_soaring_midnight", + ["text"] = "Grants Skill: Level # Soaring Midnight", + ["type"] = "skill", + }, + [112] = { + ["id"] = "skill.solar_orb", + ["text"] = "Grants Skill: Level # Solar Orb", + ["type"] = "skill", + }, + [113] = { + ["id"] = "skill.unique_earthbound_triggered_spark", + ["text"] = "Grants Skill: Level # Spark", + ["type"] = "skill", + }, + [114] = { + ["id"] = "skill.spellslinger_invocation", + ["text"] = "Grants Skill: Level # Spellslinger", + ["type"] = "skill", + }, + [115] = { + ["id"] = "skill.summon_spiraling_conspiracy", + ["text"] = "Grants Skill: Level # Spiraling Conspiracy", + ["type"] = "skill", + }, + [116] = { + ["id"] = "skill.spirit_vessel_companion", + ["text"] = "Grants Skill: Level # Spirit Vessel", + ["type"] = "skill", + }, + [117] = { + ["id"] = "skill.starborn_onslaught", + ["text"] = "Grants Skill: Level # Starborn Onslaught", + ["type"] = "skill", + }, + [118] = { + ["id"] = "skill.cast_lightning_spell_on_hit", + ["text"] = "Grants Skill: Level # Thundergod's Wrath", + ["type"] = "skill", + }, + [119] = { + ["id"] = "skill.time_of_need", + ["text"] = "Grants Skill: Level # Time of Need", + ["type"] = "skill", + }, + [120] = { + ["id"] = "skill.trail_of_caltrops", + ["text"] = "Grants Skill: Level # Trail of Caltrops", + ["type"] = "skill", + }, + [121] = { + ["id"] = "skill.trinity", + ["text"] = "Grants Skill: Level # Trinity", + ["type"] = "skill", + }, + [122] = { + ["id"] = "skill.unleash", + ["text"] = "Grants Skill: Level # Unleash", + ["type"] = "skill", + }, + [123] = { + ["id"] = "skill.valakos_charge", + ["text"] = "Grants Skill: Level # Valako's Charge", + ["type"] = "skill", + }, + [124] = { + ["id"] = "skill.volatile_dead", + ["text"] = "Grants Skill: Level # Volatile Dead", + ["type"] = "skill", + }, + [125] = { + ["id"] = "skill.war_banner_reservation", + ["text"] = "Grants Skill: Level # War Banner", + ["type"] = "skill", + }, + [126] = { + ["id"] = "skill.ancient_gifts", + ["text"] = "Grants Skill: Level # Wildwood's Gifts", + ["type"] = "skill", + }, + [127] = { + ["id"] = "skill.wind_dancer", + ["text"] = "Grants Skill: Level # Wind Dancer", + ["type"] = "skill", + }, + [128] = { + ["id"] = "skill.withering_presence", + ["text"] = "Grants Skill: Level # Withering Presence", + ["type"] = "skill", + }, + [129] = { + ["id"] = "skill.wolf_pack", + ["text"] = "Grants Skill: Level # Wolf Pack", + ["type"] = "skill", + }, + }, + ["id"] = "skill", + ["label"] = "Skill", + }, +} +-- spell-checker: enable \ No newline at end of file diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index da8f0bff6..7050036f2 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -4,7 +4,7 @@ end local statDescriptions = getStatDescriptors("stat_descriptions.csd") loadStatFile("stat_descriptions.csd") --- not comprehensive. see moddomains table in export tool and enums.lua +-- not comprehensive. see mod domains table in export tool and enums.lua local Domains = { GenericMod = 1, FlaskCharm = 2, @@ -156,7 +156,7 @@ local function writeMods(outName, condFunc) -- hashed with them. we don't want to hash e.g. the lower -- and upper range of # to # damage modifiers separately. if statsHashed[stat.Id] then - goto innercontinue + goto innerContinue end -- tincture stat descriptions are in a separate file @@ -170,7 +170,7 @@ local function writeMods(outName, condFunc) -- skip stats that are missing fields. these are most likely -- hidden stats or e.g. map stats if not statEntry or not statEntry.stats or not statEntry[1] then - goto innercontinue + goto innerContinue end -- match stats to the stat values on the mod and save them @@ -191,21 +191,31 @@ local function writeMods(outName, condFunc) -- the same stat as regular jewel mods. this means the -- description will not include the also grant: prefix local stats = copyTable(statEntry.stats) + -- radius jewels lack a proper stat descriptor and so we add it manually + local prefix -- radius jewel mods: -- notable if mod.NodeType == 2 then table.insert(stats, "local_jewel_mod_stats_added_to_notable_passives") + prefix = "Notable Passive Skills in Radius also grant " -- small elseif mod.NodeType and mod.NodeType == 1 then table.insert(stats, "local_jewel_mod_stats_added_to_small_passives") + prefix = "Small Passive Skills in Radius also grant " end local description, _, _ = describeStats(currentStats) + if prefix then + for i, v in ipairs(description or {}) do + description[i] = prefix..v + end + end + local tradeHash = hashStats(stats) tradeHashes[tradeHash] = description - ::innercontinue:: + ::innerContinue:: end out:write("tradeHashes = { ") for hash, desc in pairs(tradeHashes) do diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 4f7a16d4b..97a6ff373 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -238,7 +238,7 @@ function convertUTF8to16(text, offset) else t_insert(out, "?\z") end - else + else t_insert(out, "?\z") end end @@ -888,9 +888,13 @@ function supportEnabled(skillName, activeSkill) return true end +-- will remove newlines from strings so that they are valid lua +---@param thing string | table | number +---@return string function stringify(thing) if type(thing) == 'string' then - return thing + local s = thing:gsub("\n", "") + return s elseif type(thing) == 'number' then return ""..thing; elseif type(thing) == 'table' then @@ -907,12 +911,12 @@ function stringify(thing) s = s.."[\""..k.."\"] = " end if type(v) == 'string' then - s = s.."\""..stringify(v).."\", " + s = s.."\""..stringify(v).."\"," else if type(v) == "boolean" then v = v and "true" or "false" end - val = stringify(v)..", " + val = stringify(v).."," if type(v) == "table" then val = string.gsub(val, "\n", "\n\t") end